VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

AtomicBoolean lazySet() method in Java with Examples

Last Updated : 27 Feb, 2019
The java.util.concurrent.atomic.AtomicBoolean.lazySet() is an inbuilt method in java that updates the previous value and sets it to a new value which is passed in the parameter. Syntax:
public final void lazySet(boolean newVal)
Parameters: The function accepts a single mandatory parameter newVal which is to be updated. Return Value: The function does not returns anything. Below programs illustrate the above function: Program 1:
Output:
Previous value: false
Current value: true
Program 2:
Comment