Java中的 DoubleAdder add() 方法及示例
Java.DoubleAdder.add()是Java中的一个内置方法,它将给定值添加到前一个值或初始值。创建类的对象时,其初始值为零。
句法:
public void add(double x)
参数:此方法接受单个参数x ,该参数指定要添加的值。
返回值:该方法返回加法运算后的新值。
下面的程序说明了上述函数:
程序 1 :
// Program to demonstrate the add() method
import java.lang.*;
import java.util.concurrent.atomic.DoubleAdder;
public class GFG {
public static void main(String args[])
{
DoubleAdder num = new DoubleAdder();
// add operation on num
num.add(42);
num.add(10);
// Print after add operation
System.out.println(" the current value is: " + num);
}
}
输出:
the current value is: 52.0
方案二:
// Program to demonstrate the add() method
import java.lang.*;
import java.util.concurrent.atomic.DoubleAdder;
public class GFG {
public static void main(String args[])
{
DoubleAdder num = new DoubleAdder();
// add operation on num
num.add(1);
// Print after add operation
System.out.println(" the current value is: " + num);
}
}
输出:
the current value is: 1.0
参考:https: Java/util/concurrent/atomic/DoubleAdder.html#add-double-