Java中的 AtomicInteger addAndGet() 方法及示例
Java.util.concurrent.atomic.AtomicInteger.addandget()是Java中的一个内置方法,它将函数参数中传递的值与先前的值相加,并返回数据类型为int的新更新值.
句法:
public final int addAndGet(int val)
参数:该函数接受一个强制参数val ,该参数指定要添加的值。
返回值:函数在加法完成后返回整数值。
下面的程序演示了该函数:
方案一:
// Java Program to demonstrates
// the addandget() function
import java.util.concurrent.atomic.AtomicInteger;
public class GFG {
public static void main(String args[])
{
// Initially value as 0
AtomicInteger val
= new AtomicInteger();
// Update the value
int c = val.addAndGet(6);
// Prints the updated value
System.out.println("Updated value: "
+ c);
}
}
输出:
Updated value: 6
方案二:
// Java Program to demonstrates
// the addandget() 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 the value to 18
val.addAndGet(6);
// Prints the updated value
System.out.println("Updated value: "
+ val);
}
}
输出:
Previous value: 18
Updated value: 24
参考: https: Java/util/concurrent/atomic/AtomicInteger.html#addAndGet-int-