当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Double.shortValue()用法及代码示例



描述

这个java.lang.Double.shortValue() 方法将此 Double 的值作为 short 返回(通过强制转换为 short)。

声明

以下是声明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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Double.shortValue() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。