DEVFYI - Developer Resource - FYI

What is transient

J2SE Interview Questions and Answers


(Continued from previous question...)

What is transient

A keyword in the Java programming language that indicates that a field is not part of the serialized form of an object. When an object is serialized, the values of its transient fields are not included in the serial representation, while the values of its non-transient fields are included.

(Continued on next question...)

Other Interview Questions