The
lazySet() method of a
AtomicReference class is used to set the value of this AtomicReference object with memory effects as specified by VarHandle.setRelease(java.lang.Object...) to ensures that prior loads and stores are not reordered after this access.
Syntax:
public final void lazySet(V newValue)
Parameters: This method accepts newValue which is the new value to set.
Return value: This method returns nothing.
Below programs illustrate the lazySet() method:
Program 1:
Output:
Integer value = 67545678
Program 2: