Java Double intValue()方法及示例

Java Double intValue()方法及示例

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

语法:

DoubleObject.intValue()

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

以下程序说明了Java中的intValue()方法。

程序1 :

// 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

程序2

// 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程