当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Float doubleValue()用法及代码示例


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

用法

FloatObject.doubleValue()

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


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

示例1:

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

示例2:

// 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://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#doubleValue()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Float doubleValue() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。