InterviewSolution
Saved Bookmarks
| 1. |
Is Constructor Of Parent Class Called During Deserialization Process Of Child Class? |
|
Answer» If SUPERCLASS implements Serializable - constructor is not called while if the superclass doesn't IMPLEMENT Serializable - constructor is called during DESERIALIZATION process of CHILD CLASS. If superclass implements Serializable - constructor is not called while if the superclass doesn't implement Serializable - constructor is called during DeSerialization process of child class. |
|