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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。