With Java Serialization, I understand that when a field is marked as transient, it is not serialized. Therefore, when an object is deserialized, what happens to the fields that were set for the transition? Are they set to the values ββdefined in the constructor?
source share