📜  Java中的 Number.shortValue() 方法及示例

📅  最后修改于: 2022-05-13 01:54:46.726000             🧑  作者: Mango

Java中的 Number.shortValue() 方法及示例

Java.lang.Number.shortValue()是Java中的一个内置方法,它返回转换为短数据类型的指定数字的值。这可能涉及舍入或截断。

句法:

public abstract short shortValue()

参数:此方法不接受任何参数。

返回值:该方法返回该对象转换为short类型后所代表的数值。

下面的程序说明了 Number.shortValue() 方法:

方案一:

// 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

方案二:

// 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