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