Java AtomicInteger.get()
Syntax
AtomicInteger.get() has the following syntax.
public final int get()
Example
In the following code shows how to use AtomicInteger.get() method.
import java.util.concurrent.atomic.AtomicInteger;
//from w ww.java 2 s . c o m
public class Main {
public static void main(String[] argv) throws Exception {
AtomicInteger atomicInteger = new AtomicInteger();
System.out.println(atomicInteger.getAndAdd(10));
System.out.println(atomicInteger.getAndAdd(10));
System.out.println(atomicInteger.get());
}
}
The code above generates the following result.