📌  相关文章
📜  Java中的浮点 doubleValue() 方法及示例

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

Java中的浮点 doubleValue() 方法及示例

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

语法

FloatObject.doubleValue()

返回值:返回此 Float 对象的精度值。

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

方案一:

// Java code to demonstrate
// Float doubleValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // Float value
        float a = 17.65f;
  
        // wrapping the Float value
        // in the wrapper class Float
        Float b = new Float(a);
  
        // doubleValue of the Float Object
        double output = b.doubleValue();
  
        // prdoubleing the output
        System.out.println("Float value of "
                           + b + " is : " + output);
    }
}
输出:
Float value of 17.65 is : 17.649999618530273

方案二:

// Java code to demonstrate
// Float doubleValue() method
  
class GFG {
    public static void main(String[] args)
    {
  
        // Float value
        float a = 6.0f;
  
        // wrapping the Float value
        // in the wrapper class Float
        Float b = new Float(a);
  
        // doubleValue of the Float Object
        double output = b.doubleValue();
  
        // prdoubleing the output
        System.out.println("Float value of "
                           + b + " is : " + output);
    }
}
输出:
Float value of 6.0 is : 6.0

参考:https: Java/lang/Float.html#doubleValue()