📜  Java中的双 intValue() 方法及示例

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

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

Double 类的intValue()方法是一个内置方法,用于在类型转换后将调用对象指定的值返回为 int。

语法

DoubleObject.intValue()

返回值:它将 DoubleObject 的值返回为int

下面的程序说明了Java中的 intValue() 方法:

方案一:

// Java code to demonstrate
// Double intValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // Double value
        Double a = 17.47;
  
        // wrapping the Double value
        // in the wrapper class Double
        Double b = new Double(a);
  
        // intValue of the Double Object
        int output = b.intValue();
  
        // printing the output
        System.out.println("Int value of "
                           + b + " is : " + output);
    }
}
输出:
Int value of 17.47 is : 17

方案二:

// Java code to demonstrate
// Double intValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "54.1";
  
        // wrapping the Double value
        // in the wrapper class Double
        Double b = new Double(value);
  
        // intValue of the Double Object
        int output = b.intValue();
  
        // printing the output
        System.out.println("Int value of "
                           + b + " is : " + output);
    }
}
输出:
Int value of 54.1 is : 54