AtomicLongArray getAndDecrement() method in Java with Examples Last Updated : 08 Feb, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 index. The function getAndDecrement() is similar to decrementAndGet() but the latter function returns the value after the decrement whereas the former returns the value before the decrement. Syntax: public final long getAndDecrement(int i) Parameters: The function accepts a single parameter i which is the index where decrement by one operation is performed. Return value: The function returns the value before the decrement operation at the index which is in long. Below programs illustrate the above method: Program 1: Java // Java program that demonstrates // the getAndDecrement() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 1, 2, 3, 4, 5 }; // Initializing an AtomicLongArray with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Index where operation is performed int idx = 3; // Decrementing the value at // idx applying getAndDecrement // and storing previous value long prev = arr.getAndDecrement(idx); // The previous value at idx System.out.println("Value at index " + idx + " before decrement is " + prev); // Displaying the AtomicLongArray System.out.println("The array after decrement : " + arr); } } Output: The array : [1, 2, 3, 4, 5] Value at index 3 before decrement is 4 The array after decrement : [1, 2, 3, 3, 5] Program 2: Java // Java program that demonstrates // the getAndDecrement() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 10, 20, 30, 40, 50 }; // Initializing an AtomicLongArray with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Index where operation is performed int idx = 0; // Decrementing the value at // idx applying getAndDecrement // and storing previous value long prev = arr.getAndDecrement(idx); // The previous value at idx System.out.println("Value at index " + idx + " before decrement is " + prev); // Displaying the AtomicLongArray System.out.println("The array after decrement : " + arr); } } Output: The array : [10, 20, 30, 40, 50] Value at index 0 before decrement is 10 The array after decrement : [9, 20, 30, 40, 50] Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#getAndDecrement-int- Comment More infoAdvertise with us Next Article AtomicLongArray getAndIncrement() method in Java with Examples R rupesh_rao Follow Improve Article Tags : Java Java - util package Java-Functions Java-AtomicLongArray Practice Tags : Java Similar Reads 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 AtomicLong getAndDecrement() method in Java with examples The Java.util.concurrent.atomic.AtomicLong.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 long. Syntax: public final long getAndDecrement() Parameters: The function does not accepts a single parameter. 2 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 AtomicLongArray getAndSet() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.getAndSet() is an inbuilt method in Java that atomically sets a given value at any given position of the AtomicLongArray. The method takes the index value of the AtomicLongArray and the value to set as the parameters. It returns the value at the given 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 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 Like