AtomicLongArray getAndSet() method in Java with Examples Last Updated : 08 Feb, 2019 Comments Improve Suggest changes Like Article Like Report 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 index before setting the new value at that index. The function getAndSet() is similar to the set() function but the former returns value while the latter does not return any value. Syntax: public final long getAndSet(int i, long newValue) Parameters: The function accepts two parameters: i – The index where update is to be made. newValue – The value to set at index i Return value: The function returns the value at the given index before the update which is in long. Below programs illustrate the above method: Program 1: Java // Java program that demonstrates // the getAndSet() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 11, 12, 13, 14, 15 }; // 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; // New value to set at idx long val = 100; // Updating the value at // idx applying getAndSet // and store previous value long prev = arr.getAndSet(idx, val); // Previous value at idx before update System.out.println("Value at index " + idx + " before the update is " + prev); // Displaying the AtomicLongArray 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 : [100, 12, 13, 14, 15] Program 2: Java // Java program that demonstrates // the getAndSet() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 11, 12, 13, 14, 15 }; // 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; // New value to set at idx long val = 10; // Updating the value at // idx applying getAndSet // and store previous value long prev = arr.getAndSet(idx, val); // Previous value at idx before update System.out.println("Value at index " + idx + " before the update is " + prev); // Displaying the AtomicLongArray 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, 10, 15] Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#getAndSet-int-long- Comment More infoAdvertise with us Next Article AtomicLongArray getAndSet() method in Java with Examples rupesh_rao Follow Improve Article Tags : Java Java - util package Java-Functions Java-AtomicLongArray Practice Tags : Java Similar Reads AtomicLong getAndSet() method in Java with examples The Java.util.concurrent.atomic.AtomicLong.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 long. Syntax: public final long getAndSet(long val) Parameters: The function accepts a single 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 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 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 AtomicLongArray getAndUpdate() method in Java with Examples The Java.util.concurrent.atomic.AtomicLongArray.getAndUpdate() is an inbuilt method in Java that updates the value at any given index of the AtomicLongArray after applying a given update function on the value at that index. The method takes the index value of the AtomicLongArray and the update funct 3 min read Like