posted 22 years ago
Serialization is how you can convert an object into a byte stream, and later deserialze it back into the original object.
Can be useful if you want to write an object to a file, or pass it across the network; or to any type of stream available!
If a class implements the serializable interface then it can be serialized.
T