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 function accepts a single mandatory parameter val which specifies the value to be added. Return value: The function returns the integer value after addition is done. Program below demonstrates the function: Program 1:
Java
import java.util.concurrent.atomic.AtomicInteger;
public class GFG {
public static void main(String args[])
{
AtomicInteger val
= new AtomicInteger();
int c = val.addAndGet( 6 );
System.out.println("Updated value: "
+ c);
}
}
|
Program 2:
Java
import java.util.concurrent.atomic.AtomicInteger;
public class GFG {
public static void main(String args[])
{
AtomicInteger val
= new AtomicInteger( 18 );
System.out.println("Previous value: "
+ val);
val.addAndGet( 6 );
System.out.println("Updated value: "
+ val);
}
}
|
Output:
Previous value: 18
Updated value: 24
Program 3:
Java
import java.io.*;
import java.util.concurrent.atomic.AtomicInteger;
class GFG {
public static void main(String[] args) throws InterruptedException
{
AtomicInteger count = new AtomicInteger( 0 );
Thread thread1 = new Thread(() -> {
for ( int i = 0 ; i < 1000 ; i++) {
count.incrementAndGet();
}
});
Thread thread2 = new Thread(() -> {
for ( int i = 0 ; i < 1000 ; i++) {
count.incrementAndGet();
}
});
thread1.start();
thread2.start();
thread1.join();
thread2.join();
System.out.println( "Final count: " + count.get());
}
}
|
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html#addAndGet-int-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
27 Feb, 2023
Like Article
Save Article