Is there any difference between a volatile Object reference and AtomicReference in case I would just use get() and set()-methods from AtomicReference?
|
|
|
Short answer is: No. From the java.util.concurrent.atomic package doc:
By the way, the doc for the package is very good and everything is explained...
|
|||||||||||
|
|
No, there is not. The additional power provided by AtomicReference is the compareAndSet() method and friends. If you do not need those methods, a volatile reference provides the same semantics as AtomicReference.set() and .get(). |
|||
|
|
|
AtomicReference provides additional functionality which a plain volatile variable does not provide. As you have read API you will know this, but it also provides a lock which can be useful for some operations. However, unless you need this additional functionality I suggest you use a plain volatile field. |
|||||
|
|
JDK source code is one of the best ways to answers confusions like this. If you look at the code in AtomicReference, it uses a volatie variable for object storage.
So, obviously if you are going to just use get() and set() on AtomicReference it is like using a volatile variable. But as other readers commented, AtomicReference provides additional CAS semantics. So, first decide if you want CAS semantics or not, and if you do only then use AtomicReference. |
|||||||
|