VOOZH about

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

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


  • Courses
  • Tutorials
  • Interview Prep

AtomicBoolean getAndSet() method in Java with Examples

Last Updated : 27 Feb, 2019
The Java.util.concurrent.atomic.AtomicBoolean.getAndSet() is an inbuilt method in java that sets the given value to the value passed in the parameter and returns the value before updation which is of data-type boolean. Syntax:
public final boolean getAndSet(boolean val)
Parameters: The function accepts a single mandatory parameter val which specifies the value to be updated. Return Value: The function returns the value before update operation is performed to the previous value. Below programs illustrate the above method: Program 1:
Output:
Previous value: false
Current value: true
Program 2:
Comment