Java中的短 doubleValue() 方法和示例
Short 类的Java.lang.Short.doubleValue()方法是Java中的内置方法,用于将 Short 对象的值作为双精度值返回。
句法:
public double doubleValue()
返回类型:将 ShortObject 的值返回为double 。
下面是Java中 doubleValue() 方法的实现:
示例 1:
// Java code to demonstrate
// Short doubleValue() method
class GFG {
public static void main(String[] args)
{
// Short value
Short a = 17;
// wrapping the Short value
// in the wrapper class Short
Short b = new Short(a);
// doubleValue of the Short Object
double output = b.doubleValue();
// printing the output
System.out.println("Double value of "
+ a + " is : " + output);
}
}
输出:
Double value of 17 is : 17.0
示例 2:
// Java code to demonstrate
// Short doubleValue() method
class GFG {
public static void main(String[] args)
{
String value = "17";
// wrapping the Short value
// in the wrapper class Short
Short b = new Short(value);
// doubleValue of the Short Object
double output = b.doubleValue();
// printing the output
System.out.println("Double value of "
+ b + " is : " + output);
}
}
输出:
Double value of 17 is : 17.0