Double类的shortValue()方法是一种内置方法,用于在类型转换后的短时间内返回由调用对象指定的值。
用法:
DoubleObject.shortValue()
返回值:它返回DoubleObject的值作为short。
以下程序说明了Java中的shortValue()方法:
示例1:
// Java code to demonstrate
// Double shortValue() method
class GFG {
public static void main(String[] args)
{
// Double value
Double a = 17.47;
// wrapping the Double value
// in the wrapper class Double
Double b = new Double(a);
// shortValue of the Double Object
short output = b.shortValue();
// prshorting the output
System.out.println("Short value of "
+ b + " is : " + output);
}
}
输出:
Short value of 17.47 is : 17
示例2:
// Java code to demonstrate
// Double shortValue() method
class GFG {
public static void main(String[] args)
{
String value = "54.1";
// wrapping the Double value
// in the wrapper class Double
Double b = new Double(value);
// shortValue of the Double Object
short output = b.shortValue();
// prshorting the output
System.out.println("Short value of "
+ b + " is : " + output);
}
}
输出:
Short value of 54.1 is : 54
相关用法
- Java Float shortValue()用法及代码示例
- Java Number.shortValue()用法及代码示例
- Java Byte shortValue()用法及代码示例
- Java Doubles.indexOf(double[] array, double target)用法及代码示例
- Java Doubles.indexOf(double[] array, double[] target)用法及代码示例
- Java Integer shortValue()用法及代码示例
- Java Short shortValue()用法及代码示例
- Java Double.equals()用法及代码示例
- Java Double parseDouble()用法及代码示例
- Java Double.compareTo()用法及代码示例
- Java Double doubleValue()用法及代码示例
- Java Double doubleToRawLongBits()用法及代码示例
- Java OptionalDouble of(double)用法及代码示例
- Java Double isNaN()用法及代码示例
- Java Double doubleToLongBits()用法及代码示例
注:本文由纯净天空筛选整理自ShivamKD大神的英文原创作品 Double shortValue() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。