java.DoubleAdder.intValue()是Java中的一個內置方法,在縮小原始轉換後,它以整數形式返回sum()。創建類的對象時,其初始值為零。
用法:
public int intValue()
參數:此方法不接受任何參數。
返回值:轉換為int數據類型後,該方法返回此對象表示的數值。
以下示例程序旨在說明上述函數:
程序1:
// Program to demonstrate the intValue() 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);
// intValue operation on variable num
num.intValue();
// Print after intValue operation
System.out.println("the value after intValue() is: " + num);
}
}
輸出:
the value after intValue() is: 21.0
程序2:
// Program to demonstrate the intValue() 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);
// intValue operation on variable num
num.intValue();
// Print after intValue operation
System.out.println("the value after intValue() is: " + num);
}
}
輸出:
the value after intValue() is: 11.0
參考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/DoubleAdder.html#intValue–
相關用法
- Java DoubleAdder add()用法及代碼示例
- Java DoubleAdder sum()用法及代碼示例
- Java DoubleAdder doubleValue()用法及代碼示例
- Java DoubleAdder toString()用法及代碼示例
- Java DoubleAdder longValue()用法及代碼示例
- Java DoubleAdder sumThenReset()用法及代碼示例
- Java DoubleAdder floatValue()用法及代碼示例
- Java DoubleAdder reset()用法及代碼示例
- Java Number.intValue()用法及代碼示例
- Java DoubleAccumulator intValue()用法及代碼示例
- Java AtomicInteger intValue()用法及代碼示例
- Java Level intValue()用法及代碼示例
- Java Double intValue()用法及代碼示例
- Java LongAdder intValue()用法及代碼示例
- Java AtomicLong intValue()用法及代碼示例
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 DoubleAdder intValue() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。