Effective Java #77 states that we have to use readResolve to preserve the Singleton guarentee during serialization. They have used the example.
public class Elvis implements Serializable{
public static final Elvis INSTANCE = new Elvis();
private Elvis() { ... }
public void leaveTheBuilding() { ... }
and they suggest using
If the Elvis class is made to implement Serializable, the following readResolve method suffices to guarantee the singleton property:
// readResolve for instance control - you can do better!
private Object readResolve() {
// Return the one true Elvis and let the garbage collector
// take care of the Elvis impersonator.
return INSTANCE; }
This method ignores the deserialized object, returning the distinguished Elvis instance that was created when the class was initialized.
- Now the question is does serialization loads the class again to have two instance of Elvis?
- If the class is loaded only once then we should be having only one instance of Elvis since static fields are not serialized and are not restored during deserialization and
- From where does the other Elvis instance comes which is made eligble for garbage collection by readResolve (prevented from escaping the deserializtaion process). Can this be explained?