java.lang.Long.shortValue()方法实例
java.lang.Long.shortValue() 方法返回这个Long 作为short 的值。
声明
以下是java.lang.Long.shortValue()方法的声明
public short shortValue()
参数
-
NA
返回值
此方法返回该对象表示转换为short类型后的数值。
异常
-
NA
例子
下面的例子显示java.lang.Long.shortValue()方法的使用。
package com.yiibai; 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