Java AtomicLong getAndAdd()方法及示例
Java.util.concurrent.atomic.AtomicLong.getAndAdd() 是java中的一个内置方法,它将给定的值添加到当前值中,并返回更新前的值,该值为数据类型 long。
语法
public final long getAndAdd(long val)
参数: 该函数接受一个强制参数 val ,它指定了要添加到当前值的值。
返回值: 该函数返回在对前一个值进行加法之前的值。
下面的程序说明了上述方法。
程序1 :
// 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
程序2
// 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://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html#getAndAdd-long-
极客教程