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


Java Double shortValue()用法及代碼示例


Double類的shortValue()方法是一種內置方法,用於在類型轉換後的短時間內返回由調用對象指定的值。

用法

DoubleObject.shortValue()

返回值:它返回DoubleObject的值作為short。


以下程序說明了Java中的shortValue()方法:
示例1:

// Java code to demonstrate 
// Double shortValue() 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); 
  
        // shortValue of the Double Object 
        short output = b.shortValue(); 
  
        // prshorting the output 
        System.out.println("Short value of "
                           + b + " is : " + output); 
    } 
}
輸出:
Short value of 17.47 is : 17

示例2:

// Java code to demonstrate 
// Double shortValue() 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); 
  
        // shortValue of the Double Object 
        short output = b.shortValue(); 
  
        // prshorting the output 
        System.out.println("Short value of "
                           + b + " is : " + output); 
    } 
}
輸出:
Short value of 54.1 is : 54


相關用法


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