Java.lang.Double.longBitsToDouble() 方法
描述
java.lang.Double.longBitsToDouble() 方法返回对应于给定位表示的双精度值。 根据 IEEE 754 浮点"双格式"位布局,该参数被认为是浮点值的表示。它包括以下要点 −
- 如果参数为 0x7ff0000000000000L,则结果为正无穷大。
- 如果参数为 0xfff0000000000000L,则结果为负无穷大。
声明
以下是 java.lang.Double.longBitsToDouble() 方法的声明。
public static double longBitsToDouble(long bits)
参数
bits − 这是任何长整数。
返回值
此方法返回具有相同位模式的双精度浮点值。
异常
NA
示例
下面的例子展示了 java.lang.Double.longBitsToDouble() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class DoubleDemo { public static void main(String[] args) { Double d = new Double("15.30"); /* returns the double value corresponding to a given bit representation */ System.out.println(d.longBitsToDouble(6757689)); System.out.println(d.longBitsToDouble(0x7ff0000000000000L)); System.out.println(d.longBitsToDouble(0xfff0000000000000L)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
3.338742E-317 Infinity -Infinity