Home Help Java K Keyword- transient



Keyword- transient
Posted on: November 13, 2009 at 12:00 AM
The transient keyword is used to indicate to the JVM that the indicated variable is not part of the persistent state of the object.

Keyword- transient

     

The transient keyword is used to indicate to the JVM that the indicated variable is not part of the persistent state of the object. All the Variables which are part of the persistent state of an object are required to be saved when the object is archived. At that time, the transient marker is ignored by the Java runtime system. 

we use transient in a class or instance variable declaration like other modifiers. Serialization process in not applicable to the transient variables.

To know more about this just click:

http:/www.roseindia.net/tutorialhelp/comment/36885

Related Tags for Keyword- transient:


More Tutorials from this section

Ask Questions?    Discuss: Keyword- transient  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.