java.LongAccumulator.doubleValue()是java中的一个内置方法,在扩展原语转换后,该方法将当前值返回为double。
用法:
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
程序2:
// 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
相关用法
- Java LongAccumulator get()用法及代码示例
- Java LongAccumulator intValue()用法及代码示例
- Java LongAccumulator toString()用法及代码示例
- Java LongAccumulator floatValue()用法及代码示例
- Java LongAccumulator getThenReset()用法及代码示例
- Java LongAccumulator reset()用法及代码示例
- Java LongAccumulator longValue()用法及代码示例
- Java LongAccumulator accumulate()用法及代码示例
- Java Byte doubleValue()用法及代码示例
- Java DoubleAccumulator doubleValue()用法及代码示例
- Java DoubleAdder doubleValue()用法及代码示例
- Java Double doubleValue()用法及代码示例
- Java AtomicLong doubleValue()用法及代码示例
- Java Float doubleValue()用法及代码示例
- Java Short doubleValue()用法及代码示例
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 LongAccumulator doubleValue() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。