📌  相关文章
📜  Java中的 DoubleAdder intValue() 方法及示例

📅  最后修改于: 2022-05-13 01:55:48.677000             🧑  作者: Mango

Java中的 DoubleAdder intValue() 方法及示例

Java.DoubleAdder.intValue()是Java中的一个内置方法,它在缩小原始转换后将 sum() 作为int返回。创建类的对象时,其初始值为零。

句法:

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

方案二

// 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: Java/util/concurrent/atomic/DoubleAdder.html#intValue–