Java.lang.Double.doubleToLongBits() 方法
描述
java.lang.Double.doubleToLongBits() 方法根据IEEE 754浮点"双格式"位布局返回指定浮点值的表示。它包括以下要点 −
- 如果参数为正无穷大,则结果为 0x7ff0000000000000L。
- 如果参数为负无穷大,则结果为 0xfff0000000000000L。
- 如果参数为 NaN,则结果为 0x7ff8000000000000L。
声明
以下是 java.lang.Double.doubleToLongBits() 方法的声明。
public static long doubleToLongBits(double value)
参数
value − 这是双精度浮点数。
返回值
此方法返回代表浮点数的位。
异常
NA
示例
下面的例子展示了 java.lang.Double.doubleToLongBits() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class DoubleDemo { public static void main(String[] args) { Double d = new Double("15.30"); //returns the bits that represent the floating-point number System.out.println("Value = " + d.doubleToLongBits(5.5d)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
Value = 4617878467915022336