Java AtomicInteger getAndAdd()方法及示例
java.util.concurrent.atomic.AtomicInteger.getAndAdd() 是java中的一个内置方法,它将给定的值添加到当前值中,并返回更新前的值,该值为数据类型 int。
语法
public final int getAndAdd(int val)
参数: 该函数接受一个强制参数 val ,它指定了要添加到当前值的值。
返回值: 该函数返回在对前一个值进行加法之前的值。
下面的程序演示了这个函数。
程序 1 :
// Java program that demonstrates
// the getAndAdd() function
import java.util.concurrent.atomic.AtomicInteger;
public class GFG {
public static void main(String args[])
{
// Initially value as 0
AtomicInteger val
= new AtomicInteger(0);
// Adds 7 and gets the previous value
int 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.AtomicInteger;
public class GFG {
public static void main(String args[])
{
// Initially value as 18
AtomicInteger val
= new AtomicInteger(18);
// Prints the updated value
System.out.println("Previous value: "
+ val);
// Adds 8 and gets the previous value
int 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/AtomicInteger.html#getAndAdd-int-
极客教程