What does AtomicBoolean do that a volatile boolean cannot achieve?
|
|
They are just totally different. I will show the difference for integers:
If two threads call the function parallely, "i" might be 5 afterwards, since the code will be compiled like this (except you cannot synchronize on int):
If you use an AtomicInteger and getAndAdd(int delta), you can be sure that the result will be 10. In the same way, if two threads both negate a boolean variable concurrently, with an The purpose of volatile is a different one. Consider this example
If you have a thread running loop() and another thread calling stop(), you might run into an infinite loop if you omit "volatile", since the first thread might cache the value of stop. |
|||||||||||||||||
|
|
I use volatile fields when said field is ONLY UPDATED by its owner thread and the value is only read by other threads, you can think of it as a publish/subscribe scenario where there are many observers but only one publisher. However if those observers must perform some logic based on the value of the field and then push back a new value then I go with Atomic* vars or locks or synchronized blocks, whatever suits me best. In many concurrent scenarios it boils down to get the value, compare it with another one and update if necessary, hence the compareAndSet and getAndSet methods present in the Atomic* classes. Check the JavaDocs of the java.util.concurrent.atomic package for a list of Atomic classes and an excellent explanation of how they work (just learned that they are lock-free, so they have an advantage over locks or synchronized blocks) |
|||||
|
|
You can't do |
|||
|
|
|
|
|||||||
|
|
The memory effects of reading/writing to For example the
Hence, the
Is guaranteed to only notify the listener once (assuming no other thread sets the |
|||
|
|
|
If there are multiple threads accessing class level variable then each thread can keep copy of that variable in its threadlocal cache. Making the variable volatile will prevent threads from keeping the copy of variable in threadlocal cache. Atomic variables are different and they allow atomic modification of their values. |
|||
|
|
|
Atomic is for threading and it basically says, this operation is done in 1 machine cycle. Meaning if you have several threads, you don't get a problem if multiple of them are changing it at the same time. |
|||
|
|