我有以下简单的代码:
int speed1 = (int)(6.2f * 10);
float tmp = 6.2f * 10;
int speed2 = (int)tmp;
speed1
和 speed2
应该具有相同的值,但事实上,我有:
speed1 = 61
speed2 = 62
我知道我应该用数学。而不是铸造,但我想知道为什么值是不同的。
我查看了生成的字节码,但除了存储和加载之外,操作码是相同的。
我还在 java 中尝试了相同的代码,并且正确地获得了62和62。
有人能解释一下吗?
编辑: 在实际代码中,它不是直接的6.2 f * 10,而是一个函数调用 * 一个常量。我有以下字节码:
speed1
:
IL_01b3: ldloc.s V_8
IL_01b5: callvirt instance float32 myPackage.MyClass::getSpeed()
IL_01ba: ldc.r4 10.
IL_01bf: mul
IL_01c0: conv.i4
IL_01c1: stloc.s V_9
speed2
:
IL_01c3: ldloc.s V_8
IL_01c5: callvirt instance float32 myPackage.MyClass::getSpeed()
IL_01ca: ldc.r4 10.
IL_01cf: mul
IL_01d0: stloc.s V_10
IL_01d2: ldloc.s V_10
IL_01d4: conv.i4
IL_01d5: stloc.s V_11
我们可以看到操作数是浮点数,唯一的区别是 stloc/ldloc
。
至于虚拟机,我尝试使用 Mono/Win7、 Mono/MacOS 和. NET/Windows,结果都是一样的。