Jump to content
Wikibooks The Free Textbook Project

Java Programming/Keywords/transient

From Wikibooks, open books for an open world

transient is a Java keyword which marks a member variable not to be serialized when it is persisted to streams of bytes. When an object is transferred through the network, the object needs to be 'serialized'. Serialization converts the object state to serial bytes. Those bytes are sent over the network and the object is recreated from those bytes. Member variables marked by the java transient keyword are not transferred; they are lost intentionally.

Syntax:

private  transient  <member-variable>;
or 
transient  private  <member-variable>;


For example:

Computer code
publicclass FooimplementsSerializable
{
privateStringsaveMe;
privatetransientStringdontSaveMe;
privatetransientStringpassword;
//...
}

See also:

  • Java language specification reference: jls
  • Serializable Interface. Serializable

AltStyle によって変換されたページ (->オリジナル) /