如果指定的元素尚不存在,则将其添加到此集合中。更正式地说,如果此集合不包含元素 e2,则将指定的元素 e 添加到此集合中,使得 (e==null ? e2==null : e.equals(e2))。如果该集合已包含该元素,则调用将保持该集合不变并返回 false。
由于我下面的代码将返回 false for e.equals(e2)
,我希望它可以让我添加两次相同的实例。但是该集合仅包含我的实例一次。有人可以解释为什么吗?
package com.sandbox;
import java.util.HashSet;
import java.util.Set;
public class Sandbox {
public static void main(String[] args) {
Set<A> as = new HashSet<A>();
A oneInstance = new A();
System.out.println(oneInstance.equals(oneInstance)); //this prints false
as.add(oneInstance);
as.add(oneInstance);
System.out.println(as.size()); //this prints 1, I'd expect it to print 2 since the System.out printed false
}
private static class A {
private Integer key;
@Override
public boolean equals(Object o) {
if (!(o instanceof A)) {
return false;
}
A a = (A) o;
if (this.key == null || a.key == null) {
return false; //the key is null, it should return false
}
if (key != null ? !key.equals(a.key) : a.key != null) {
return false;
}
return true;
}
@Override
public int hashCode() {
return key != null ? key.hashCode() : 0;
}
}
}