我在 Windows 8 (Intel Atom Z3775) 上使用以下方法:
public static strictfp void main(String args[])
{
float a = 0.000000002f;
float b = 90000300000000004f;
float c = a * b;
System.out.println(c);
}
这给了我:1.80000592E8
跑步时
public strictfp void calculate()
{
float a = 0.000000002f;
float b = 90000300000000004f;
float c = a * b;
Toast.makeText(getApplicationContext(), c + "", Toast.LENGTH_LONG).show();
}
我得到:1.8000059E8
为什么它们不同?我使用 strictfp 错了吗?