I have read "When to use 'volatile' in Java?" but I'm still confused. How do I know when I should mark a variable volatile? What if I get it wrong, either omitting a volatile on something that needs it or putting volatile on something that doesn't? What are the rules of thumb when figuring out what variables should be volatile in multithreaded code?
|
|
You basically use it when you want to let a member variable be accessed by multiple threads but do not need compound atomicity (not sure if this is the right terminology).
the above is a bad example, because you need compound atomicity.
Now to a valid example:
Now, why can't you just use Basically this means that it is even possible that your app. keeps writing If you put |
||||
|
|
|
Volatile is most useful in lock-free algorithms. You mark the variable holding shared data as volatile when you are not using locking to access that variable and you want changes made by one thread to be visible in another, or you want to create a "happens-after" relation to ensure that computation is not re-ordered, again, to ensure changes become visible at the appropriate time. The JMM Cookbook describes which operations can be re-ordered and which cannot. |
|||
|
|
|
The Declaring a field like See Java Concurrency in Practice for more on that topic. |
|||||||||
|
|
http://mindprod.com/jgloss/volatile.html "The volatile keyword is used on variables that may be modified simultaneously by other threads." "Since other threads cannot see local variables, there is never any need to mark local variables volatile. You need synchronized to co-ordinate changes to variables from different threads, but often volatile will do just to look at them." |
|||
|
|