First page Back Continue Last page Overview Graphics
Object Input & Output Streams
Java allows us to read and write whole objects into a binary file.
The process of saving an objects state requires saving all non-static data members it holds.
These data members may be primitive or non-primitive (ref to an object).
This process is termed Serialization: serializing the object’s data members into a stream.