Java中的 DoubleAdder floatValue() 方法及示例
Java.DoubleAdder.floatValue()是Java中的一个内置方法,它在缩小原始转换后将 sum() 作为浮点数返回。创建类的对象时,其初始值为零。
句法:
public float floatValue()
参数:此方法不接受任何参数。
返回值:该方法返回该对象转换为float数据类型后所表示的数值。
下面的程序说明了上述方法:
// Program to demonstrate the floatValue() 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(11);
num.add(10);
// floatValue() operation on variable num
num.floatValue();
// Print after floatValue() operation
System.out.println("the value after floatValue() is: " + num);
}
}
输出:
the value after floatValue() is: 21.0
// Program to demonstrate the floatValue() 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(10);
// floatValue() operation on variable num
num.floatValue();
// Print after floatValue() operation
System.out.println("the value after floatValue() is: " + num);
}
}
输出:
the value after floatValue() is: 10.0
参考:https: Java/util/concurrent/atomic/DoubleAdder.html#floatValue–