Java Short shortValue()方法
java.lang.Short.shortValue() 方法返回这个Short的short值。
1 语法
public short shortValue()
2 参数
无
3 返回值
此方法返回该对象转换为short类型后表示的数值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Short shortValue()方法
*/
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
热门文章
优秀文章