Java Questions based on Object Serialization »
| 0 Comments |
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 [...]




