Java Questions based on Object Serialization
By on Nov 5, 2007 in 4008
How many methods in the Serializable interface? Which methods of Serializable interface should I implement?There is no method in the Serializable interface. It’s an empty interface which does not contain any methods. The Serializable interface acts as a marker, telling the object serialization tools that the class is serializable. So we do not implement any [...]


