The
java.util.concurrent.atomic.AtomicInteger.getAndAdd() is an inbuilt method in java that adds the given value to the current value and returns the value before updation which is of data-type
int.
Syntax:
public final int getAndAdd(int val)
Parameters: The function accepts a single mandatory parameter
val which specifies the value to be added to the current value.
Return value: The function returns the value before addition is performed to the previous value.
Program below demonstrates the function:
Program 1:
Output:
Previous value: 0
Current value: 7
Program 2: