RSS Feed for 4008Category: 4008

Java Questions based on Object Serialization »

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 [...]