java.lang.Short.shortValue()方法实例
java.lang.Short.shortValue() 方法返回这个Short的short值。
声明
以下是java.lang.Short.shortValue()方法的声明
public short shortValue()
参数
-
NA
返回值
此方法返回该对象转换为short类型后表示的数值。
异常
-
NA
例子
下面的例子显示java.lang.Short.shortValue()方法的使用。
package com.yiibai; import java.lang.*; public class ShortDemo { public static void main(String[] args) { // create short object and assign value to it short sval = 50; Short sobj = new Short(sval); // returns short value of Short short shortValue = sobj.shortValue(); // printing short value System.out.println("short value of given Short is = " + shortValue); } }
让我们来编译和运行上面的程序,这将产生以下结果:
short value of given Short is = 50