當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Short doubleValue()用法及代碼示例


Short類的java.lang.Short.doubleValue()方法是Java中的內置方法,用於將Short對象的值返回為double。

用法:

public double doubleValue()

返回類型:它將ShortObject的值返回為double。


下麵是Java中doubleValue()方法的實現:

示例1:

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

示例2:

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


相關用法


注:本文由純淨天空篩選整理自Sruti Rai大神的英文原創作品 Short doubleValue() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。