Map<Integer, Integer> map = new HashMap<>(); resMap.put(1, 1); System.out.println(map.get(1L)); System.out.println(map.get(1));
你們能夠看下,上面的代碼輸出是什麼?我稍後公佈答案。java
HashMap的get
方法源碼以下(增長本身的註釋):node
public V get(Object key) { Node<K,V> e; return (e = getNode(hash(key), key)) == null ? null : e.value; } /** * Implements Map.get and related methods. * * @param hash hash for key * @param key the key * @return the node, or null if none */ final Node<K,V> getNode(int hash, Object key) { Node<K,V>[] tab; Node<K,V> first, e; int n; K k; // 若是map不爲空 if ((tab = table) != null && (n = tab.length) > 0 && (first = tab[(n - 1) & hash]) != null) { // 若是直接經過傳進來的key找到了值,直接返回 // 1)比較傳進來key的hash值和在map中對應位置找到的結點的hash值是否一致 // 2)比較傳進來的key對象和在map中對應位置找到的結點的key對象(object)是否相等 if (first.hash == hash && // always check first node ((k = first.key) == key || (key != null && key.equals(k)))) return first; // 若是經過hash找到的結點的下一個節點不爲空,說明是鏈表 if ((e = first.next) != null) { // 若是是紅黑樹,直接紅黑樹查找 if (first instanceof TreeNode) return ((TreeNode<K,V>)first).getTreeNode(hash, key); // 若是是普通鏈表,鏈表遍歷查找 do { if (e.hash == hash && ((k = e.key) == key || (key != null && key.equals(k)))) return e; } while ((e = e.next) != null); } } // 上述都不知足,返回null return null; }
若是傳的key對應的hash值,可以匹配到map中的結點(只能說hash表(map)中這個位置有東西),還須要進行下面兩個判斷。源碼分析
1)比較傳進來key的hash值和在map中對應位置找到的結點的hash值是否一致code
2)==比較傳進來的key對象和在map中對應位置找到的結點的key對象(object)是否相等==對象
看了上述源碼分析以後,咱們公佈答案:get
null 1
最終的差別就是源碼
(k = first.key) == key || (key != null && key.equals(k))
這段代碼,至關於 Objects.equals(key, k)
。hash
這裏比較的是,map 中存儲的對象的key,命名爲k,以及get
方法傳給map的key,命名爲key。table
至關於比較new Integer(1)
和 new Long(1L)
,咱們知道它們是兩個不一樣的對象,因此結果確定不相等。因此key是1L的時候,結果是null
。class
Map 獲取值的時候,key類型不匹配,獲取不到value。