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: