我有我的Emp類重載equals方法和putVal方法在HashMap中
class Emp
{
String empId;
public boolean equals(Emp e){..}
public boolean equals(Object o){..}
public int hashCode(){
return empId.hashCode();
}
}
現在,如果我試圖添加的Emp對象的HashSet<Emp>
兩種方法。
如果我看一下HashMap的putVal方法的代碼,該方法用於比較和設置值。代碼永遠不會將您傳遞的對象轉換爲java.lang.Object
。因此每次調用equals(Emp)
版本時都會如此。
但每次調用equals(Object o)
。我想知道什麼時候將此Emp轉換爲java.lang.Object,以便每調用一次equals(Object o)
。
下面是putval片段我使用:
final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
boolean evict) {
Node<K,V>[] tab; Node<K,V> p; int n, i;
if ((tab = table) == null || (n = tab.length) == 0)
n = (tab = resize()).length;
if ((p = tab[i = (n - 1) & hash]) == null)
tab[i] = newNode(hash, key, value, null);
else {
Node<K,V> e; K k;
if (p.hash == hash &&
((k = p.key) == key || (key != null && key.equals(k))))
e = p;
else if (p instanceof TreeNode)
e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
....
}
在這裏推薦的另一件事:最好總是使用花括號來處理then/else語句;即使它只是一個單一的陳述。並且:精確地說明格式/縮進;因爲這有助於閱讀/理解代碼! – GhostCat