AtomicIntegerArray getAndIncrement() method in Java with Examples Last Updated : 27 Feb, 2019 Comments Improve Suggest changes Like Article Like Report 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 before the increment and then increments the value at that index. The function getAndIncrement() is similar to the incrementAndGet() function but the former returns the value before the increment while the latter returns the value after the increment operation. Syntax: public final int getAndIncrement(int i) Parameters: The function accepts a single parameter i which is the index where increment by one operation is performed. Return value: The function returns the previous value at that index before the update which is in Integer. Below programs illustrate the above method: Program 1: Java // Java program that demonstrates // the getAndIncrement() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 11, 12, 13, 14, 15 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Index where operation is performed int idx = 0; // Updating the value at // idx applying getAndIncrement // and storing the previous value int prev = arr.getAndIncrement(idx); // Previous value at idx before update System.out.println("Value at index " + idx + " before the update is " + prev); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } } Output: The array : [11, 12, 13, 14, 15] Value at index 0 before the update is 11 The array after update : [12, 12, 13, 14, 15] Program 2: Java // Java program that demonstrates // the getAndIncrement() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 11, 12, 13, 14, 15 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Index where operation is performed int idx = 3; // Updating the value at // idx applying getAndIncrement // and storing the previous value int prev = arr.getAndIncrement(idx); // Previous value at idx before update System.out.println("Value at index " + idx + " before the update is " + prev); // Displaying the AtomicIntegerArray System.out.println("The array after update : " + arr); } } Output: The array : [11, 12, 13, 14, 15] Value at index 3 before the update is 14 The array after update : [11, 12, 13, 15, 15] Note: The function getAndIncrement() is similar to incrementAndGet() but the latter function returns the updated value whereas the former returns previous value after the update. Reference: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#getAndIncrement(int) Comment More infoAdvertise with us Next Article AtomicIntegerArray getAndIncrement() method in Java with Examples gopaldave Follow Improve Article Tags : Java Java-Functions Java-concurrent-package Java-AtomicIntegerArray Practice Tags : Java Similar Reads 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 AtomicInteger getAndIncrement() method in Java with examples The java.util.concurrent.atomic.AtomicInteger.getAndIncrement() is an inbuilt method in java that increases the given value by one and returns the value before updation which is of data-type int. Syntax: public final int getAndIncrement() Parameters: The function does not accepts a single parameter. 2 min read AtomicLongArray getAndIncrement() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.getAndIncrement() is an inbuilt method in Java that atomically increments the value present at any index of an AtomicLongArray by one. The method takes the index value of the AtomicLongArray as the parameter, returns the value at that index before the 3 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 AtomicInteger getAndDecrement() method in Java with examples The java.util.concurrent.atomic.AtomicInteger.getAndDecrement() is an inbuilt method in java that decreases the given value by one and returns the value before updation which is of data-type int. Syntax: public final int getAndDecrement() Parameters: The function does not accepts a single parameter. 2 min read AtomicLongArray getAndDecrement() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.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 AtomicLongArray and returns the value present at that index and then decrements the value at that inde 3 min read AtomicIntegerArray getAndAdd() method in Java with Examples 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 t 3 min read AtomicLong getAndIncrement() method in Java with examples The Java.util.concurrent.atomic.AtomicLong.getAndIncrement() is an inbuilt method in java that increases the given value by one and returns the value before updation which is of data-type long. Syntax: public final long getAndIncrement() Parameters: The function does not accepts a single parameter. 2 min read AtomicIntegerArray incrementAndGet() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.incrementAndGet() is an inbuilt method in Java that atomically increments the value at any index of an AtomicIntegerArray by one. The method takes the index value of the AtomicIntegerArray as the parameter, increments the value at that index and ret 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 Like