Java
Programming and Technical
What is serialization?
Read Solution (Total 3)
-
- converting objects into series of bits
- 10 years agoHelpfull: Yes(1) No(0)
- Saving the object to the file called as serialization
- 7 years agoHelpfull: Yes(1) No(0)
- Serialization is nothing but storing the object (state of object ) to a file (i.e in a binary file )
Basically during the serialization we are storing the state of an object not the behavior and while deserialization we require two input 1. .class file 2. file which contains serialized data - 7 years agoHelpfull: Yes(0) No(0)
Java Other Question