Java / Java Serialization
Is the constructor invoked when a Java object is de-serialized?
If the class implements Serializable, the constructor is not called during deserialization process. However, if the class implements Externalizable, the constructor is called during deserialization process.
More Related questions...