InterviewSolution
Saved Bookmarks
| 1. |
What Are The Compatible And Incompatible Changes In Java Serialization Mechanism? |
|
Answer» ADDING new FIELD or method is a compatible change and changing class HIERARCHY or UN-implementing Serializable interface are NON compatible CHANGES. Adding new field or method is a compatible change and changing class hierarchy or UN-implementing Serializable interface are non compatible changes. |
|