VOOZH about

URL: https://www.geeksforgeeks.org/java/atomicinteger-getandadd-method-in-java-with-examples/

⇱ AtomicInteger getAndAdd() method in Java with examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

AtomicInteger getAndAdd() method in Java with examples

Last Updated : 29 Jan, 2019
The java.util.concurrent.atomic.AtomicInteger.getAndAdd() is an inbuilt method in java that adds the given value to the current value and returns the value before updation which is of data-type int. Syntax:
public final int getAndAdd(int val)
Parameters: The function accepts a single mandatory parameter val which specifies the value to be added to the current value. Return value: The function returns the value before addition is performed to the previous value. Program below demonstrates the function: Program 1:
Output:
Previous value: 0
Current value: 7
Program 2:
Output:
Previous value: 18
Previous value: 18
Current value: 26
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html#getAndAdd-int-
Comment