Transient Variables : transient « Modifiers « SCJP

Home
SCJP
1.Java Source And Data Type
2.Operators
3.Modifiers
4.Type Casting
5.Statements
6.Object Oriented
7.Thread
8.Utility Classes
9.File
SCJP » Modifiers » transient 
3.12.1.Transient Variables
The transient modifier applies only to instance variables.

If you mark an instance variable as transient, you're telling the JVM to skip this variable 
when you attempt to serialize the object. 

transient variable is not stored as part of its object's persistent state. 

public class MainClass{
    transient int i = 0;
    public static void main(String[] argv){
       System.out.println();
    }
}
3.12.transient
3.12.1.Transient Variables
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.