Java Long shortValue()方法

java.lang.Long.shortValue() 方法返回这个Long 作为short 的值。

1 语法

public short shortValue()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

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

public class LongDemo {

   public static void main(String[] args) {

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

输出结果为:

Value of s = 327

 

热门文章

优秀文章