Java Double shortValue()方法

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

1 语法

public short shortValue()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Double shortValue()方法
 */
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

 

热门文章

优秀文章