volatile Variables : volatile « 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 » volatile 
3.13.1.volatile Variables
The volatile modifier applies only to instance variables.

The volatile modifier tells the JVM that a thread accessing the variable must always reconcile 
its own private copy of the variable with the master copy in memory. 

The volatile variables might be modified asynchronously

public class MainClass{
    volatile int i=0;
    
    public static void main(String[] argv){
      System.out.println();
    }
}
3.13.volatile
3.13.1.volatile 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.