Java Short intValue()方法
java.lang.Short.intValue() 方法返回这个Short 的int类型值。
1 语法
public int intValue()
2 参数
无
3 返回值
此方法返回该对象转换为int类型后表示的数值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Short intValue()方法
*/
public class ShortDemo {
public static void main(String[] args) {
// create short object and assign value to it
short sval = 30;
Short sobj = new Short(sval);
// returns int value of Short
int intValue = sobj.intValue();
// printing int value
System.out.println("int value of Short is = " + intValue);
}
}
输出结果为:
int value of Short is = 30
热门文章
优秀文章