Java Float floatToIntBits()方法及示例
Float Class中的 floatToIntBits() 方法是java中的一个内置函数,它根据IEEE 754浮点 “单格式 “位布局返回指定浮点值的表示。
语法
public static int floatToIntBits(float val)
参数: 该方法只接受一个参数val,它指定了一个要转换为整数位的浮点数。
返回值: 该函数返回代表浮点数的整数位。下面是一些特殊情况。
- 如果参数是正 无穷大 ,结果是 0x7f800000。
- 如果参数是负 无穷大 ,则结果为 0xff800000。
- 如果参数是 NaN ,结果是 0x7fc00000。
以下程序说明了Float.floatToIntBits()方法的使用。
程序1 :
// Java program to demonstrate
// Float.floatToIntBits() method
import java.lang.*;
class Gfg1 {
public static void main(String args[])
{
float val = 1.5f;
// function call
int answer = Float.floatToIntBits(val);
// print
System.out.println(val + " in int bits: "
+ answer);
}
}
输出。
1.5 in int bits: 1069547520
程序2
// Java program to demonstrate
// Float.floatToIntBits() method
import java.lang.*;
class Gfg1 {
public static void main(String args[])
{
float val = Float.POSITIVE_INFINITY;
float val1 = Float.NEGATIVE_INFINITY;
float val2 = Float.NaN;
// function call
int answer = Float.floatToIntBits(val);
// print
System.out.println(val + " in int bits: "
+ answer);
// function call
answer = Float.floatToIntBits(val1);
// print
System.out.println(val1 + " in int bits: "
+ answer);
// function call
answer = Float.floatToIntBits(val);
// print
System.out.println(val2 + " in int bits: "
+ answer);
}
}
输出。
Infinity in int bits: 2139095040
-Infinity in int bits: -8388608
NaN in int bits: 2139095040
参考资料: https://docs.oracle.com/javase/7/docs/api/java/lang/Float.html#floatToIntBits(float)