I am really confused about what I read about the applications of volatile keyword in java.

  1. Is the following statement correct? "a write to a volatile field happens before every subsequent read of the same field"

  2. Ideally when should volatile keyword used?

  3. What is the difference between:

    class TestClass
    {  private int x;
    
    
       synchronized int get(){return x;}
       synchronized void set(int x){this.x = x;}
    
    
    }
    

and

class TestClass
{  private volatile int x;

   int get(){return x;}
   void set(int x){this.x = x;}

}
link|improve this question

Near duplicate of stackoverflow.com/questions/1063133/… – pavanlimo Aug 30 '10 at 18:35
Duplicate of stackoverflow.com/questions/106591 – Greg Mattes Aug 30 '10 at 18:39
feedback

5 Answers

up vote 17 down vote accepted

volatile is a field modifier, while synchronized modifies code blocks and methods. So we can specify three variations of a simple accessor using those two keywords:

     int i1;
     int geti1() {return i1;}

     volatile int i2;
     int geti2() {return i2;}

     int i3;
     synchronized int geti3() {return i3;}

geti1() accesses the value currently stored in i1 in the current thread. Threads can have local copies of variables, and the data does not have to be the same as the data held in other threads.In particular, another thread may have updated i1 in it's thread, but the value in the current thread could be different from that updated value. In fact Java has the idea of a "main" memory, and this is the memory that holds the current "correct" value for variables. Threads can have their own copy of data for variables, and the thread copy can be different from the "main" memory. So in fact, it is possible for the "main" memory to have a value of 1 for i1, for thread1 to have a value of 2 for i1 and for thread2 to have a value of 3 for i1 if thread1 and thread2 have both updated i1 but those updated value has not yet been propagated to "main" memory or other threads.

On the other hand, geti2() effectively accesses the value of i2 from "main" memory. A volatile variable is not allowed to have a local copy of a variable that is different from the value currently held in "main" memory. Effectively, a variable declared volatile must have it's data synchronized across all threads, so that whenever you access or update the variable in any thread, all other threads immediately see the same value. Generally volatile variables have a higher access and update overhead than "plain" variables. Generally threads are allowed to have their own copy of data is for better efficiency.

There are two differences between volitile and synchronized.

Firstly synchronized obtains and releases locks on monitors which can force only one thread at a time to execute a code block. That's the fairly well known aspect to synchronized. But synchronized also synchronizes memory. In fact synchronized synchronizes the whole of thread memory with "main" memory. So executing geti3() does the following:

  1. The thread acquires the lock on the monitor for object this .
  2. The thread memory flushes all its variables, i.e. it has all of its variables effectively read from "main" memory .
  3. The code block is executed (in this case setting the return value to the current value of i3, which may have just been reset from "main" memory).
  4. (Any changes to variables would normally now be written out to "main" memory, but for geti3() we have no changes.)
  5. The thread releases the lock on the monitor for object this.

So where volatile only synchronizes the value of one variable between thread memory and "main" memory, synchronized synchronizes the value of all variables between thread memory and "main" memory, and locks and releases a monitor to boot. Clearly synchronized is likely to have more overhead than volatile.

http://javaexp.blogspot.com/2007/12/difference-between-volatile-and.html

link|improve this answer
The statement about synchronization just one variable here is not a true and generally all what is written doesn't sound absolutely right. – Stas Feb 3 '11 at 12:20
The statement about synchronization just one variable here is not a true and generally all what is written doesn't sound absolutely right. Write to volatile has the same memory effect as monitor release. Reading from the volatile has the same memory effect, as monitor acquire action. All that means that access to volatile variable affects other variables as well. Also, there is nothing like block on a variable, mentioned in "Volatile Flow", there are writes into the memory and cache invalidation. – Stas Feb 3 '11 at 12:30
Good link is here - cs.umd.edu/~pugh/java/memoryModel and -1 for the mess with fundamentals :) – Stas Feb 3 '11 at 12:31
feedback

volatile guarantees that reads from the variable always reflects the most up to update value. The runtime can achieve this in various ways, including not caching or refreshing the cache when the value has changed.

link|improve this answer
feedback

bwawok eluded to it, but the volatile keyword isnt only for memory visibility. Before Java 1.5 was released the volatile keyword declared that the field will get the most recent value of the object by hitting main memory each time for reads and flushing for writes.

Today's volatile keyword syas two very important things:

  1. Dont worry about how but know that when reading a volatile field you will always have the most up to date value.
  2. A compiler cannot re order a volatile read/write as to maintain program order.
link|improve this answer
feedback

From a client point of view, a private volatile field is hidden from the public interface while synchronized methods are more visible.

link|improve this answer
synchronized is not part of the public interface or method signature. – Steve Kuo Aug 30 '10 at 19:20
I stand corrected. It is in fact an implementation detail. – gawi Aug 30 '10 at 19:35
feedback

To answer part 3 of your question, and partly part 2.

There is no functional difference between synchronized and volatile samples.

However, each has it's own drawbacks in terms of performance. In some cases volatile performance may be really worse than just using synchronized or other primitives from java.util.concurrent. For discussion of this see -> http://stackoverflow.com/questions/989839/why-arent-variables-in-java-volatile-by-default.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.