If using 1 volatile variable, does it turn off cpu caching in for other related non volatile variables as well?
|
|
no, it only prevents that variable from being loaded up to cpu cache and modified there. more precisely, it forces the cpu to flush its cache after accessing the volatile field. see here for more complate details |
||||
|
|
|
It doesn't "turn off" caching. But yes it does typically cause a flush of other pending writes (when you write a Consider this example:
The JLS says that A happens-before B and C happens-before D. If C in thread 2 is subsequent to B in thread 1, then B happens-before C, and therefore A happens-before D. If A happens-before D then the value written to It is implementation specific how this is actually achieved. But there are certainly affects on cached data ... including cached copies of non-volatile fields. Assuming a typical memory architecture, and assuming that thread 1 and thread 2 don't share caches, this means that:
My understanding is that this is typically implemented using cache invalidate and cache flush instructions. The bottom line is that use of |
||||
|
|
|
The volatile keyword has nothing to do with memory. It is a concurrency issue. Edit The volatile keyword has nothing to do with memory efficiency. It is a concurrency issue. |
|||||||||||||
|
