AtomicIntegerArray getAndAdd() method in Java with Examples Last Updated : 24 Nov, 2021 Comments Improve Suggest changes 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: Java // Java program that demonstrates // the getAndAdd() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 10, 22, 33, 44, 55 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Index where value is to be added int idx = 0; // Value to add with value at idx int x = 16; // Updating the value at // idx applying getAndAdd and // storing the previous value int prev = arr.getAndAdd(idx, x); // Previous value at index idx // before update System.out.println("Value at index " + idx + " before update is " + prev); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } } 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: Java // Java program that demonstrates // the getAndAdd() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 1, 2, 3, 4, 5 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Index where value is to be added int idx = 3; // Value to add with value at idx int x = 16; // Updating the value at // idx applying getAndAdd and // storing the previous value int prev = arr.getAndAdd(idx, x); // Previous value at index idx // before update System.out.println("Value at index " + idx + " before update is " + prev); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } } 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- Comment More infoAdvertise with us Next Article AtomicIntegerArray getAndAdd() method in Java with Examples gopaldave Follow Improve Article Tags : Java Java-Functions Java-concurrent-package Java-AtomicIntegerArray Practice Tags : Java Similar Reads AtomicInteger getAndAdd() method in Java with examples 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 param 2 min read AtomicIntegerArray getAndSet() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.getAndSet() is an inbuilt method in Java that atomically sets a given value at any given position of the AtomicIntegerArray. The method takes the index value of the AtomicIntegerArray and the value to set as the parameters. It returns the value at t 3 min read AtomicLongArray getAndAdd() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.getAndAdd() is an inbuilt method in Java that atomically adds the given value to the element at an index of the AtomicLongArray. This method takes the index value of the AtomicLongArray and the value to be added as the parameters and returns the value 3 min read AtomicIntegerArray get() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.get() is an inbuilt method in java that gets the current value at any position of the AtomicIntegerArray. This method takes the index value as the parameter and returns the value at this index. Syntax: public final int get(int i) Parameters: The fun 2 min read AtomicIntegerArray getAndUpdate() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.getAndUpdate() is an inbuilt method in Java that updates the value at any given index of the AtomicIntegerArray after applying a given update function on the value at that index. The method takes the index value of the AtomicIntegerArray and the upd 3 min read AtomicIntegerArray getAndDecrement() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.getAndDecrement() is an inbuilt method in Java that atomically decrements the value at a given index by one. This method takes the index value of the AtomicIntegerArray and returns the value present at that index and then decrements the value at tha 3 min read AtomicIntegerArray getAndIncrement() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.getAndIncrement() is an inbuilt method in Java that atomically increments the value present at any index of an AtomicIntegerArray by one. The method takes the index value of the AtomicIntegerArray as the parameter, returns the value at that index be 3 min read AtomicInteger getAndSet() method in Java with examples The java.util.concurrent.atomic.AtomicInteger.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 int. Syntax: public final int getAndSet(int val) Parameters: The function accepts a single 2 min read AtomicLong getAndAdd() method in Java with examples The Java.util.concurrent.atomic.AtomicLong.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 long. Syntax: public final long getAndAdd(long val) Parameters: The function accepts a single mandatory param 2 min read AtomicLongArray get() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.get() is an inbuilt method in java that gets the current value at any position of the AtomicLongArray. This method takes the index value as the parameter and returns the value at this index. Syntax: public final long get(int i) Parameters: The function 2 min read Like