java.lang.Float.intBitsToFloat()方法實例
java.lang.Float.intBitsToFloat() 方法返回對應於給定的位表示的float值。該參數被認為是根據IEEE754浮點“單一格式”位布局是一個浮點值的表示。它包括以下要點:
- 如果參數為0x7f800000,結果為正無窮大。
- 如果參數為0xff800000,結果為負無窮大。
- 如果參數是任意值從範圍0x7f800001到0x7fffffff 或從 0xff800001 到 0xffffffff, 其結果是 NaN.
聲明
以下是java.lang.Float.intBitsToFloat()方法的聲明
public static float intBitsToFloat(int bits)
參數
-
bits -- 這是一個整數。
返回值
此方法返回浮點值具有相同的比特模式。
異常
-
NA
例子
下麵的例子顯示java.lang.Float.intBitsToFloat()方法的使用。
package com.yiibai; import java.lang.*; public class FloatDemo { public static void main(String[] args) { Float f = new Float("2.50f"); /* returns the floating-point value with the same bit pattern */ System.out.println(f.intBitsToFloat(123)); System.out.println(f.intBitsToFloat(0x7f800000)); System.out.println(f.intBitsToFloat(0xff800000)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
1.72E-43 Infinity -Infinity