This question is in reference to memory visibility only, not happens-before and happens-after. There are four ways in Java that guarantees changes to memory in one thread to be made visible to another thread. (reference http://gee.cs.oswego.edu/dl/cpj/jmm.html)
- A writing thread releases a synchronization lock and a reading thread subsequently acquires that same synchronization lock.
- If a field is declared as volatile, any value written to it is flushed and made visible by the writer thread before the writer thread performs any further memory operation (i.e., for the purposes at hand it is flushed immediately).
- The first time a thread accesses a field of an object, it sees either the initial value of the field or a value since written by some other thread.
- As a thread terminates, all written variables are flushed to main memory.
According to Java Concurrency in Practice, the bible on such questions:
The visibility effects of volatile variables extend beyond the value of the volatile variable itself. When thread A writes to a volatile variable and subsequently thread B reads that same variable, the values of all variables that were visible to A prior to writing to the volatile variable become visible to B after readin the volatile variable.
Volatile question
Does this mean that the JVM actually keeps track of volatile variable reads and writes, in order to know how to flush memory from A to B and not A to C? So A writes to the variable, and later C reads from the variable, and then later B reads from the variable, the flushing is done on a per-thread basis between A and B and A and C, but not B and C? Or, does it imply that all cached memory is flushed, regardless of threads? Are only the volatile variables flushed, or all cached memory?
Synchronized question
For the synchronized
keyword flushing, it says that only memory updated inside the lock is guaranteed to be published to other threads. That implies that in the following code, two threads running method()
, leaving the synchronized block will flush staticVar2
to the other thread, but not staticVar1
, is that correct?
Also, in method2()
, synchronizing over differentLock
can cause happens-before happens-after problems if another thread is executing method()
. However, the question is in terms of visibility. If thread A executes method
, then later thread B executes method2()
, is the value of staticVar2
published from A to B, even though the two threads don't synchronize over the same lock?
static int staticVar1, staticVar2;
void method() {
staticVar1++;
synchronized (lock) {
staticVar2++;
}
}
void method2() {
synchronized (differentLock) {
staticVar2++;
}
}
Static question
It appears to me that if staticVar1
is never updated to other threads, then all static variables in any program require a volatile
declaration, or should only be accessed in synchronized
blocks. That seems rather harsh, but is it correct? I've sure seen a whole lot of static variables in my time that aren't synchronized.
In summary
- Do volatile read-writes flush all memory to all threads, or only between the two accessing threads? Whichever the answer, is all memory flushed or only the volatile variables?
- Is all changed memory flushed when exiting a synchronized block, or just the memory that was changed within the block? If not all memory is flushed, does the lock object that a thread synchronizes over have to be the same in order to see the value (i.e. does the lock object have any effect on memory visibility)?
- Do all static variables accessed by two threads have to be synchronized?