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


Java Number.shortValue()用法及代碼示例


java.lang.Number.shortValue()是java中的一個內置方法,該方法返回轉換為short數據類型的指定數字的值。這可能涉及舍入或截斷。

用法:

public abstract short shortValue()

參數:此方法不接受任何參數。


返回值:轉換為short類型後,此方法返回此對象表示的數值。

以下示例程序旨在說明Number.shortValue()方法:

示例1:

// java program that demonstrates 
// Number.shortValue() method 
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        // get a number as float 
        Float x = new Float(7854123456f); 
        // print the value as short 
        System.out.println(x.shortValue()); 
  
        // get a number as double 
        Double y = new Double(98774856); 
        // print the value as short 
        System.out.println(y.shortValue()); 
    } 
}

輸出:

-1
12104

示例2:

// java program that demonstrates 
// Number.shortValue() method 
  
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        // get a number as float 
        Float x = new Float(78f); 
        // print the value as short 
        System.out.println(x.shortValue()); 
  
        // get a number as double 
        Double y = new Double(56.23); 
        // print the value as short 
        System.out.println(y.shortValue()); 
    } 
}

輸出:

78
56


相關用法


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