Long类doubleValue()方法
- doubleValue() 方法可在
java.lang
包。 - doubleValue() 方法用于返回此 Long 对象表示的值转换为 double 类型(通过强制转换)。
- doubleValue() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
- doubleValue() 方法从 Long 转换为 double 时不会抛出异常。
用法:
public double doubleValue();
参数:
- 它不接受任何参数。
返回值:
这个方法的返回类型是double
,它返回由此 Long 对象表示的转换后的(从 Long 类型到 double 类型)值。
例:
// Java program to demonstrate the example
// of doubleValue() method of Long class
public class DoubleValueOfLongClass {
public static void main(String[] args) {
// Variables initialization
long l1 = 20;
long l2 = 30;
// It returns double value denoted by this Long ob1 object
// and converted to a double by calling ob1.doubleValue()
Long ob1 = new Long(l1);
// Display ob1 result
System.out.println("ob1.doubleValue():" + ob1.doubleValue());
// It returns double value denoted by this Long ob2 object
// and converted to a double by calling ob2.doubleValue()
Long ob2 = new Long(l2);
// Display ob2 result
System.out.println("ob2.doubleValue():" + ob2.doubleValue());
}
}
输出
ob1.doubleValue():20.0 ob2.doubleValue():30.0
相关用法
- Java Long decode()用法及代码示例
- Java Long rotateRight()用法及代码示例
- Java Long reverse()用法及代码示例
- Java Long rotateLeft()用法及代码示例
- Java Long numberOfLeadingZeros()用法及代码示例
- Java Long toString()用法及代码示例
- Java Long longValue()用法及代码示例
- Java Long bitCount()用法及代码示例
- Java Long floatValue()用法及代码示例
- Java Long valueOf()用法及代码示例
- Java Long toOctalString()用法及代码示例
- Java Long shortValue()用法及代码示例
- Java Long compareTo()用法及代码示例
- Java Long equals()用法及代码示例
- Java Long numberOfTrailingZeros()用法及代码示例
- Java Long hashCode()用法及代码示例
- Java Long intValue()用法及代码示例
- Java Long signum()用法及代码示例
- Java Long byteValue()用法及代码示例
- Java Long lowestOneBit()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Long class doubleValue() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。