本帖最后由 Harry 于 2013-3-30 23:51 编辑
- public class Change{
-
- public static void main(String args[]){
-
-
- System.out.println(2.00 - 1.10);
-
- }
- }
复制代码 为什么打印输出的是0.8999999999
问题在于 1.1 这个数字不能被精确表示成为一个 double,因此它被表示成为最接近它的 double 值。
这个问题很容易订正。只需将 i % 2 与 0 而不是与 1 比较,并且反转比较的含
义即可:
public static boolean isOdd(int i){
return i % 2 != 0;
}
如果你正在在一个性能临界(performance-critical)环境中使用 isOdd 方法,
那么用位操作符 AND(&)来替代取余操作符会显得更好:
public static boolean isOdd(int i){
return (i & 1) != 0;
}
|