java中Hashmap的get方法使用

java中Hashmap的get方法

map中存儲的是鍵值對,也就是說通過set方法進行參數和值的存儲,之後通過get“鍵”的形式進行值的讀取。

舉例

Map map = new Hashmap();//創建一個map
map.put("key","value");//給map賦值
String vlaues = map.get("key");//獲取map中鍵值為“key”的值
system.out.println(vlaues );//輸出結果

以上代碼的運行結果:

value;

HashMap中get方法的原理

1、首先向get()方法中傳遞一個key

2、在get()方法中調用hash(key)

如果key!=null,返回該key的哈希值hash = key.hashCode()^ (h >>> 16),否則返回hash=0

3、在get()方法中調用getNode(hash,key)方法

獲取該key的節點,並返回value

4、getNode()方法中

首先要判斷Hashtable是否為空且table長度大於0且該hash值對應的table元素不為空,條件成立則判斷該節點的哈希值是否等於hash,依次遍歷該鏈表或紅黑樹,查找key==node.key?返回查找到的節點的value

// JDK源碼 
public V get(Object key) {
        Node<K,V> e;
        return (e = getNode(hash(key), key)) == null ? null : e.value;
}
 
final Node<K,V> getNode(int hash, Object key) {
        Node<K,V>[] tab; Node<K,V> first, e; int n; K k;
		//判斷hashtable是否為空,key對應的tab[ ]是否為空
        if ((tab = table) != null && (n = tab.length) > 0 &&
            (first = tab[(n - 1) & hash]) != null) {
			//判斷第一個節點的hash,key是否相等
            if (first.hash == hash && // always check first node
                ((k = first.key) == key || (key != null && key.equals(k))))
                return first;
			//判斷下一個節點是否為空
            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);
            }
        }
        return null;
    }

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: