Java Integer shortValue()方法

java.lang.Integer.shortValue() 方法返回这个整数Integer的short值。

1 语法

public short shortValue()

2 参数

3 返回值

此方法返回该对象表示转换为short类型后的数值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Integer shortValue()方法
 */
import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     Integer obj = new Integer(100);
 
     // returns the value of this Integer as a short
     short s = obj.shortValue();
     System.out.println("Value of s = " + s);
   }
}

输出结果为:

Value of s = 100

 

热门文章

优秀文章