java.LongAccumulator.floatValue()是java中的一個內置方法,在擴展原始轉換後,該方法將當前值作為浮點數返回。
用法:
public float floatValue()
參數:此方法不接受任何參數。
返回值:擴展原始圖元轉換後,該方法以浮點數形式返回當前值。
以下示例程序旨在說明上述方法:
程序1:
// Program to demonstrate the floatValue() 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 floatValue operation
System.out.println(" the old value is: " + num);
// floatValues current value
num.floatValue();
// Print after floatValue operation
System.out.println(" the current value is: " + num);
}
}
輸出:
the old value is: 52 the current value is: 52
程序2:
// Program to demonstrate the floatValue() 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(15);
// Print before floatValue operation
System.out.println(" the old value is: " + num);
// floatValues current value
num.floatValue();
// Print after floatValue operation
System.out.println(" the current value is: " + num);
}
}
輸出:
the old value is: 19 the current value is: 19
相關用法
- Java LongAccumulator get()用法及代碼示例
- Java LongAccumulator longValue()用法及代碼示例
- Java LongAccumulator doubleValue()用法及代碼示例
- Java LongAccumulator getThenReset()用法及代碼示例
- Java LongAccumulator toString()用法及代碼示例
- Java LongAccumulator intValue()用法及代碼示例
- Java LongAccumulator accumulate()用法及代碼示例
- Java LongAccumulator reset()用法及代碼示例
- Java DoubleAdder floatValue()用法及代碼示例
- Java BigDecimal floatValue()用法及代碼示例
- Java Byte floatValue()用法及代碼示例
- Java AtomicInteger floatValue()用法及代碼示例
- Java Number.floatValue()用法及代碼示例
- Java AtomicLong floatValue()用法及代碼示例
- Java DoubleAccumulator floatValue()用法及代碼示例
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 LongAccumulator floatValue() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。