Java 中的 DoubleAdder longValue()方法,带示例
原文:https://www . geesforgeks . org/double adder-long value-method-in-Java-with-examples/
java。DoubleAdder.longValue() 是 java 中的一个内置方法,它在缩小的原语转换后将 sum()作为 long 返回。创建类的对象时,其初始值为零。
语法:
public long longValue()
参数:返回值:该方法将该对象表示的数值转换为长数据类型后返回。
下面的程序说明了上述方法:
程序 1 :
// Program to demonstrate the longValue() 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);
// longValue operation on variable num
num.longValue();
// Print after longValue operation
System.out.println("the value after longValue() is: " + num);
}
}
输出:
the value after longValue() is: 52.0
程序二 :
// Program to demonstrate the longValue() 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(62);
// longValue operation on variable num
num.longValue();
// Print after longValue operation
System.out.println("the value after longValue() is: " + num);
}
}
输出:
the value after longValue() is: 62.0
版权属于:月萌API www.moonapi.com,转载请注明出处