InterviewSolution
Saved Bookmarks
| 1. |
What Is Transient Variable In Java? |
|
Answer» Transient variables are not included in the SERIALIZATION and are not the part of the OBJECT's serialized STATE. A transient variable can be CREATED by SPECIFYING transient keyword. Transient variables are not included in the serialization and are not the part of the object's serialized state. A transient variable can be created by specifying transient keyword. |
|