Serialized Objects
- Objects can be converted into binary data and written to files or transmitted over a network.
- A serialized object contains information about the class to which it belongs.
private void writeObject(java.io.ObjectOutputStream out)
private void readObject(java.io.ObjectInputStream in)
throws IOException, ClassNotFoundException;