Java 中的 AtomicLong addAndGet()方法,带示例
原文:https://www . geesforgeks . org/atomiclong-addandget-method-in-Java-with-examples/
Java . util . concurrent . atomic . atomiclong . addandget()是 Java 中的一个内置方法,它将函数参数中传递的值与之前的值相加,并返回数据类型为 long 的新更新值。
语法:
public final long addAndGet(long val)
参数:该函数接受单个强制参数值,该值指定要添加的值。
返回值:函数在加法完成后返回值。
下面的程序说明了上述方法:
程序 1:
// 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
版权属于:月萌API www.moonapi.com,转载请注明出处