What are the Atomic Operations in Java ?

Java language provides some basic Atomic operations. These operations can be used to make sure that concurrent threads always see the same value.

Some of these Atomic operations are...

  • Read operations on reference variables and primitive variables (except long and double) .
  • Write operations on reference variables and primitive variables (except long and double) .
  • Read operations on all variables declared as volatile.
  • Write operations on all variables declared as volatile.


You May Interest

What is a WeakHashMap in Java ?

How Does Garbage Collection Work in Java ?

What is the Difference Between Abstract Class and Interface in Ja ...

How Can We Print an Array in Java ?

What are the Rules of Method Overloading and Method Overriding in ...