AtomicLongArray.getAndAdd(int i, long delta) has the following syntax.
public final long getAndAdd(int i, long delta)
In the following code shows how to use AtomicLongArray.getAndAdd(int i, long delta) method.
import java.util.concurrent.atomic.AtomicLongArray; 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.