AtomicLong addAndGet() method in Java with examples Last Updated : 29 Jan, 2019 Comments Improve Suggest changes Like Article Like Report The Java.util.concurrent.atomic.AtomicLong.addandget() is an inbuilt method in java which adds the value which is passed in the parameter of the function to the previous value and returns the new updated value which is of data-type long. Syntax: public final long addAndGet(long val) Parameters: The function accepts a single mandatory parameter val which specifies the value to be added. Return value: The function returns the value after addition is done. Below programs illustrate the above method: Program 1: Java // Java program that demonstrates // the addandget() function import java.util.concurrent.atomic.AtomicLong; public class GFG { public static void main(String args[]) { // Initially value as 0 AtomicLong val = new AtomicLong(); // Update the value long c = val.addAndGet(6); // Prints the updated value System.out.println("Updated value: " + c); } } Output: Updated value: 6 Program 2: Java // Java program that demonstrates // the addandget() function import java.util.concurrent.atomic.AtomicLong; public class GFG { public static void main(String args[]) { // Initially value as 18 AtomicLong val = new AtomicLong(18); // Prints the updated value System.out.println("Previous value: " + val); // adds the value to 18 val.addAndGet(6); // Prints the updated value System.out.println("Updated value: " + val); } } Output: Previous value: 18 Updated value: 24 Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html#addAndGet-long- Comment More infoAdvertise with us Next Article AtomicIntegerArray addAndGet() method in Java with Examples G gopaldave Follow Improve Article Tags : Java Java - util package Java-Functions Java-AtomicLong Practice Tags : Java Similar Reads AtomicLongArray addAndGet() method in Java with Examples 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. 2 min read AtomicLongArray addAndGet() method in Java with Examples 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. 2 min read AtomicInteger addAndGet() method in Java with examples The java.util.concurrent.atomic.AtomicInteger.addandget() is an inbuilt method in java which adds the value which is passed in the parameter of the function to the previous value and returns the new updated value which is of data-type int. Syntax: public final int addAndGet(int val) Parameters: The 2 min read AtomicLong accumulateAndGet() method in Java with Examples The Java.AtomicLong.accumulateAndGet() method is an inbuilt method, which updates the current value of the object by applying the specified operation on the current value and value passed as a parameter. It takes a long as its parameter and an object of LongBinaryOperator interface and applies the o 2 min read AtomicIntegerArray addAndGet() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.addAndGet() 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 and the value to be added as the parameters and returns the updated value at this i 2 min read AtomicIntegerArray addAndGet() method in Java with Examples The Java.util.concurrent.atomic.AtomicIntegerArray.addAndGet() 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 and the value to be added as the parameters and returns the updated value at this i 2 min read Like