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


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


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

用法

DoubleObject.doubleValue()

返回值:它将DoubleObject的值返回为double。


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

示例1:

// Java code to demonstrate 
// Double doubleValue() 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); 
  
        // doubleValue of the Double Object 
        double output = b.doubleValue(); 
  
        // prdoubleing the output 
        System.out.println("Double value of "
                           + b + " is : " + output); 
    } 
}
输出:
Double value of 17.47 is : 17.47

示例2:

// Java code to demonstrate 
// Double doubleValue() 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); 
  
        // doubleValue of the Double Object 
        double output = b.doubleValue(); 
  
        // prdoubleing the output 
        System.out.println("Double value of "
                           + b + " is : " + output); 
    } 
}
输出:
Double value of 54.1 is : 54.1


相关用法


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