Java中的 LongAccumulator doubleValue() 方法及示例
Java.LongAccumulator.doubleValue()是Java中的一个内置方法,它在扩展原始转换后将当前值作为双精度值返回。
句法:
public double doubleValue()
参数:此方法不接受任何参数。
返回值:此方法在扩展原始转换后将当前值作为双精度值返回。
下面的程序说明了上述方法:
程序 1 :
// Program to demonstrate the doubleValue() method
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
public class GFG {
public static void main(String args[])
{
LongAccumulator num = new LongAccumulator(Long::sum, 0L);
// accumulate operation on num
num.accumulate(42);
num.accumulate(10);
// Print before doubleValue operation
System.out.println(" the old value is: " + num);
// doubleValues current value
num.doubleValue();
// Print after doubleValue operation
System.out.println("the current value is: " + num);
}
}
输出:
the old value is: 52
the current value is: 52
方案二:
// Program to demonstrate the doubleValue() method
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
public class GFG {
public static void main(String args[])
{
LongAccumulator num = new LongAccumulator(Long::sum, 0L);
// accumulate operation on num
num.accumulate(4);
num.accumulate(10);
// Print before doubleValue operation
System.out.println(" the old value is: " + num);
// doubleValues current value
num.doubleValue();
// Print after doubleValue operation
System.out.println("the current value is: " + num);
}
}
输出:
the old value is: 14
the current value is: 14
参考:https: Java/util/concurrent/atomic/LongAccumulator.html#doubleValue–