VOOZH about

URL: https://www.geeksforgeeks.org/java/atomicreference-lazyset-method-in-java-with-examples/

⇱ AtomicReference lazySet() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

AtomicReference lazySet() method in Java with Examples

Last Updated : 27 Dec, 2019
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:
Comment