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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。