java.lang.Long.shortValue() 方法在缩小基元转换后返回此 Long 的值作为 Short .
语法
public short shortValue()
参数
无需参数。
返回值
返回转换为short类型后该对象表示的数值。
异常
无。
示例:
在下面的示例中,java.lang.Long.shortValue() 方法在转换为 Short 类型后返回一个 Long 对象。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建Long对象
Long val1 = 25l;
Long val2 = -25l;
//打印Long对象的shortValue
System.out.println("shortValue of the val1 is: " + val1.shortValue());
System.out.println("shortValue of the val2 is: " + val2.shortValue());
}
}
上面的代码将是:
shortValue of the val1 is: 25
shortValue of the val2 is: -25