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