What is Serializable?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is Serializable?
Rating:
Serializable is a marker interface. (A marker interface is one without any method). The classes that do not implement this interface will not have any of their states serialized or deserialized. Serialization is the process of converting an object into byte stream, so that it can be transferred over a network and stored into a persistent medium such as a file.
Rating:
Was this information helpful?
Other articles
- What is ArrayIndexOutOfBoundsException?
- What is a local variable?
- What is the Runnable interface?
- What is the Externalizable interface?
- What are numeric promotions?