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