Java - Double shortValue() 方法



描述

Java Double shortValue() 方法返回此 Double 对象的 short 值。

声明

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

public short shortValue()

参数

返回值

此方法返回此对象表示的 short 值。

异常

从 Double 对象获取 short 值示例

以下示例演示了如何使用 Double shortValue() 方法获取给定正 Double 对象的 short 原语值。我们已使用给定的正 short 值初始化了一个 Double 对象。然后使用 shortValue() 方法,我们打印其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double("15.30");
   
      //return the short value
      System.out.println("Value = " + d.shortValue());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = 15

使用负值的 Double 对象获取 short 值示例

以下示例演示了如何使用 Double shortValue() 方法获取给定负 Double 对象的 short 原语值。我们已使用给定的正 short 值初始化了一个 Double 对象。然后使用 shortValue() 方法,我们打印其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double("-15.30");
   
      //return the short value
      System.out.println("Value = " + d.shortValue());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = -15

使用负零值的 Double 对象获取 short 值示例

以下示例演示了如何使用 Double shortValue() 方法获取给定值为零的负 Double 对象的 short 原语值。我们已使用给定的正 short 值初始化了一个 Double 对象。然后使用 shortValue() 方法,我们打印其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double("-0.0");
   
      //return the short value
      System.out.println("Value = " + d.shortValue());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = 0

使用正零值的 Double 对象获取 short 值示例

以下示例演示了如何使用 Double shortValue() 方法获取给定值为零的正 Double 对象的 short 原语值。我们已使用给定的正 short 值初始化了一个 Double 对象。然后使用 shortValue() 方法,我们打印其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double("+0.0");
   
      //return the short value
      System.out.println("Value = " + d.shortValue()); 
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Value = 0
java_lang_double.htm
广告