Open In App

AtomicIntegerArray getAndAdd() method in Java with Examples

Last Updated : 24 Nov, 2021
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

The Java.util.concurrent.atomic.AtomicIntegerArray.getAndAdd() 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 of the AtomicIntegerArray and the value to be added as the parameters and returns the value before the add operation. The function getAndAdd() is similar to addAndGet() but the former function returns the value before the add operation whereas the latter returns the value after the add operation.
Syntax: 
 

public final int getAndAdd(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 value before the add operation which is in Integer.
Below programs illustrate the above method:
Program 1: 
 


Output: 
The array : [10, 22, 33, 44, 55]
Value at index 0 before update is 10
The array after update : [26, 22, 33, 44, 55]

 

Program 2: 
 


Output: 
The array : [1, 2, 3, 4, 5]
Value at index 3 before update is 4
The array after update : [1, 2, 3, 20, 5]

 

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#getAndAdd-int-int-
 


Next Article

Similar Reads