java.lang.Integer.shortValue() 方法在扩展基元转换后返回此 Integer 的值作为短整型.
语法
public short shortValue()
参数
无需参数。
返回值
返回转换为short类型后该对象表示的数值。
异常
无。
示例:
在下面的示例中,java.lang.Integer.shortValue() 方法在转换为 Short 类型后返回一个 Integer 对象。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建Integer对象
Integer val1 = 25;
Integer val2 = -25;
//打印Integer对象的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