1
class MagicWithOperators{
public static void main(String[] args) {
float f = 10.2F;
double d = 10.2;
System.out.println(f==d);
}
}
產量:false
。背後的原因是什麼
爲什麼10.2f==10.2
是錯誤的,但10.0f==10.0
是真的?
http://stackoverflow.com/a/7392200/4028085 – brso05