ref: https://www.cnblogs.com/lori/p/8308671.html
在 java 中进行比较,我们需要根据比较的类型来选择合适的比较方式:
- 对象域,使用 equals 方法 。
- 类型安全的枚举,使用 equals 或== 。
- 可能为 null 的对象域 : 使用 == 和 equals 。
- 数组域 : 使用 Arrays.equals 。
- 除 float 和 double 外的原始数据类型 : 使用 == 。
- float 类型: 使用 Float.foatToIntBits 转换成 int 类型,然后使用==。
- double 类型: 使用 Double.doubleToLongBit 转换成 long 类型,然后使用==。
至于6)、7)为什么需要进行转换,我们可以参考他们相应封装类的 equals() 方法,下面的是 Float 类的:
public boolean equals(Object obj) {
return (obj instanceof Float)
&& (floatToIntBits(((Float)obj).value) == floatToIntBits(value));
}
原因嘛,里面提到了两点:
However, there are two exceptions:
If f1 and f2 both represent
Float.NaN, then the equals method returns
true, even though Float.NaN==Float.NaN
has the value false.
If <code>f1 represents +0.0f while
f2 represents -0.0f, or vice
versa, the equal test has the value
false, even though 0.0f==-0.0f
has the value true.
原文地址:https://www.cnblogs.com/frankcui/p/10810672.html
时间: 2024-11-09 17:27:29