初始化变量的方式有所不同:float f = 100;或浮动f = 100f?

时间:2014-05-09 18:14:41

标签: java floating-point

爪哇。

我初始化变量的方式有所不同:

float f = 100; //implies a cast from integer to float

float f = 100f; //simply a float initialization

结果会有所不同吗?

在这里,我尝试使用非常大的浮点数,但看起来精度的损失是相同的。

float f1 = (float)2000000000;
float f2 = (float)2000000050;
float f3 = 2000000000f;
float f4 = 2000000050f;
System.out.println(f1 + " " + f2 + " " + (f1==f2) + " " + f3 + " " + f4 + " "+ (f3==f4) );

- > 2.0E9 2.0E9 true 2.0E9 2.0E9 true

与双打有什么不同?

1 个答案:

答案 0 :(得分:3)

我认为结果会是一样的。解释浮点文字的JLS规则引用valueOf(String s)Float类型的Double方法; JLS 5.1.2给出了从整数到浮点类型的类型转换规则。两者均指“IEEE 754舍入到最近模式”。所以我认为假设结果是相同的是安全的。