The
Java.util.concurrent.atomic.AtomicIntegerArray.addAndGet() is an inbuilt method in Java that atomically adds the given value to the element at an index of the AtomicIntegerArray. This method takes the index value and the value to be added as the parameters and returns the updated value at this index.
Syntax:
public int addAndGet(int i, int delta)
Parameters: The function accepts two parameters:
i - The index where value is to be added.
delta - The value to be added.
Return value: The function returns the updated value which is in
Integer.
Below programs illustrate the above method:
Program 1:
Output:
The array : [10, 22, 33, 44, 55]
The array after update : [26, 22, 33, 44, 55]
Program 2: