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


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


Float類中的shortValue()方法是Java中的內置方法,該方法在類型轉換後立即返回通過調用對象指定的值。

用法

public short shortValue()

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


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

// Java code to demonstrate 
// Float shortValue() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Float value 
        Float a = 17.47f; 
  
        // wrapping the Float value 
        // in the wrapper class Float 
        Float b = new Float(a); 
  
        // shortValue of the Float 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 
// Float shortValue() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        String value = "54.1f"; 
  
        // wrapping the Float value 
        // in the wrapper class Float 
        Float b = new Float(value); 
  
        // shortValue of the Float Object 
        short output = b.shortValue(); 
  
        // prshorting the output 
        System.out.println("Short value of "
                           + b + " is : " + output); 
    } 
}
輸出:
Short value of 54.1 is : 54

參考:https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#shortValue()



相關用法


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