位置:首页 > Java技术 > java.lang > java.lang.Double.shortValue()方法实例

java.lang.Double.shortValue()方法实例

java.lang.Double.shortValue() 方法(通过转换成short)返回此Double转换的short值。

声明

以下是java.lang.Double.shortValue()方法的声明

public short shortValue()

参数

  • NA

返回值

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

异常

  • NA

例子

下面的例子显示java.lang.Double.shortValue()方法的使用。

package com.yiibai;

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