Java中的 AtomicLong getAndAdd() 方法及示例
Java.util.concurrent.atomic.AtomicLong.getAndAdd()是Java中的一个内置方法,它将给定值添加到当前值并返回更新前的值,该值是数据类型long 。
句法:
public final long getAndAdd(long val)
参数:该函数接受一个强制参数val ,该参数指定要添加到当前值的值。
返回值:函数返回前一个值加法前的值。
下面的程序说明了上述方法:
方案一:
// Java program that demonstrates
// the getAndAdd() function
import java.util.concurrent.atomic.AtomicLong;
public class GFG {
public static void main(String args[])
{
// Initially value as 0
AtomicLong val = new AtomicLong(0);
// Adds 7 and gets the previous value
long res
= val.getAndAdd(7);
// Prints the updated value
System.out.println("Previous value: "
+ res);
System.out.println("Current value: "
+ val);
}
}
输出:
Previous value: 0
Current value: 7
方案二:
// Java program that demonstrates
// the getAndAdd() function
import java.util.concurrent.atomic.AtomicLong;
public class GFG {
public static void main(String args[])
{
// Initially value as 18
AtomicLong val = new AtomicLong(18);
// Prints the updated value
System.out.println("Previous value: "
+ val);
// Adds 8 and gets the previous value
long res = val.getAndAdd(8);
// Prints the updated value
System.out.println("Previous value: "
+ res);
System.out.println("Current value: "
+ val);
}
}
输出:
Previous value: 18
Previous value: 18
Current value: 26
参考: https: Java/util/concurrent/atomic/AtomicLong.html#getAndAdd-long-