DEVFYI - Developer Resource - FYI

What is transient variable?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

435. What is transient variable?

Transient variable can't be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can't be written to the stream instead when the class is retrieved from the ObjectStream the value of the variable becomes null.

(Continued on next question...)

Other Interview Questions