I have a question about Object serialization and deserialization when class field changed.
If an object with type MyClass
MyClass {
String str1;
LinkedList mylist = new LinkedList();
String str2;
}
has been serialized to file.
Then I changed the code which changes MyClass definition to
MyClass {
String str1;
LinkedList mylist = new LinkedList();
Map myMap = new HashMap();
}
After that, I deserialize the object from file to a MyClass object using the changed code. Is it OK? Will there any exception thrown during deserialization? I want to reuse the old object. I.e. I want the de-serializing can be done. So I hope there is no exception thrown.
Thanks.