Java.lang.Double.shortValue() 方法
描述
java.lang.Double.shortValue() 方法将这个 Double 的值作为一个短值返回(通过转换为一个短值)。
声明
以下是 java.lang.Double.shortValue() 方法的声明。
public short shortValue()
参数
NA
返回值
此方法返回此对象表示的 double 值转换为 short 类型。
异常
NA
示例
下面的例子展示了 java.lang.Double.shortValue() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class DoubleDemo { public static void main(String[] args) { /* returns the double value represented by this object converted to type short */ Double obj = new Double("3.5"); short s = obj.shortValue(); System.out.println("Value = " + s); obj = new Double("2"); s = obj.shortValue(); System.out.println("Value = " + s); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
Value = 3 Value = 2