Java Objects |
You use thetransient
keyword to indicate to the the Java virtual machine that the indicated variable is not part of the persistent state of the object. At this time, the Java virtual machine ignores thetransient
marker. Future releases of the Java system will use thetransient
marker to implement various object archiving functions.Like other variable modifiers in the Java system, you use
transient
in a class or instance variable declaration like thisThis statement declares an integer variable namedclass TransientExample { transient int hobo; . . . }hobo
that is not part of the persistent state of the TransientExample class.
Table of Contents |