我将四个字节转换为浮点型,结果得到了NaN
,但是我想要的值是0.0
。我究竟做错了什么?
这是我的代码:
public class abc
{
public static void main(String[] args)
{
int[] arry = { 255, 255, 255, 255 };
int num = ((arry[0] << 24) & 0xFF000000) | ((arry[1] << 16) & 0xFF0000)
| ((arry[2] << 8) & 0xFF00) | (arry[3] & 0xFF);
float f = Float.intBitsToFloat(num);
f= (float) ((f < 0 ? Math.ceil(f * 10) : Math.floor(f * 10)) / 10);
System.out.println(f);
}
}
最佳答案
您的主要问题是0xFFFFFFFF
确实是NaN。
值为0的浮点数是... 0。
将数组更改为
int[] arry = { 0x00, 0x00, 0x00, 0x00 };
将结果值更改为
0.0f
浮点数。关于java - Java中的NaN问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1807737/