AtomicLongArray addAndGet() method in Java with Examples Last Updated : 05 Feb, 2019 Comments Improve Suggest changes Like Article Like Report The Java.util.concurrent.atomic.AtomicLongArray.addAndGet() 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 and the value to be added as the parameters and returns the updated value at this index. Syntax: public long addAndGet(int i, long 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 updated value which is in long. Below programs illustrate the above method: Program 1: Java // Java program that demonstrates // the addAndGet() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 10, 22, 33, 44, 55 }; // Initializing an AtomicLongArray with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Index where value is to be added int idx = 0; // Value to add with value at idx long x = 16; // Updating the value at // idx applying addAndGet arr.addAndGet(idx, x); // Displaying the AtomicLongArray System.out.println("The array after update : " + arr); } } Output: The array : [10, 22, 33, 44, 55] The array after update : [26, 22, 33, 44, 55] Program 2: Java // Java program that demonstrates // the addAndGet() 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 value is to be added int idx = 3; // Value to add with value at idx long x = 16; // Updating the value at // idx applying addAndGet arr.addAndGet(idx, x); // Displaying the AtomicLongArray System.out.println("The array after update : " + arr); } } Output: The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 20, 5] Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#addAndGet-int-long- Create Quiz Comment R rupesh_rao Follow 0 Improve R rupesh_rao Follow 0 Improve Article Tags : Java Java - util package Java-Functions Java-AtomicLongArray Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References7 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers1 min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like