HashMap于LinkedHashMap

HashMap

HashMap是數(shù)組加上單鏈表的形式

# 構(gòu)造函數(shù)

public HashMap() {
    // 4, 0.75f
    this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
}

# put

public V put(K key, V value) {
    return putVal(hash(key), key, value, false, true);
}
// 哈希算法, 不討論
static final int hash(Object key) {
    int h;
    return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
}
public V put(K key, V value) {
    if (table == EMPTY_TABLE) {
        // 初始化數(shù)組容器, 長(zhǎng)度為4
        inflateTable(threshold); 
    }
    if (key == null)
        return putForNullKey(value);
    // 計(jì)算哈希值
    int hash = sun.misc.Hashing.singleWordWangJenkinsHash(key);
    // int i = 哈希值 & (數(shù)組長(zhǎng)度-1); 是為了不超出下標(biāo)
    int i = indexFor(hash, table.length);
    for (HashMapEntry<K,V> e = table[i]; e != null; e = e.next) {
        Object k;
        // 匹配 對(duì)應(yīng)的key, 和哈希值
        // 如果匹配到覆蓋原值
        if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {
            V oldValue = e.value;
            e.value = value;
            e.recordAccess(this);
            return oldValue;
        }
    }

    modCount++;
    // 沒(méi)有匹配到, 鏈表中添加新的節(jié)點(diǎn)
    addEntry(hash, key, value, i);
    return null;
}

// key 為 NULL 時(shí)的方法
private V putForNullKey(V value) {
    // e 賦值為 tabel[0], 可見(jiàn)將 key為 null, 分配到了數(shù)組中的0下標(biāo)
    for (HashMapEntry<K,V> e = table[0]; e != null; e = e.next) {
        // e 不為空, 并且key == null時(shí), 覆蓋舊value
        if (e.key == null) {
            V oldValue = e.value;
            e.value = value;
            // 給子類重寫(xiě), 空方法
            e.recordAccess(this);
            return oldValue;
        }
    }
    modCount++;
    // int hash, K key, V value, int bucketIndex
    addEntry(0, null, value, 0);
    return null;
}

// 給鏈表添加元素
void addEntry(int hash, K key, V value, int bucketIndex) {
    // 當(dāng)存儲(chǔ)的元素 >= 閾值(默認(rèn)為3) 并且數(shù)組當(dāng)前下標(biāo)中的元素不等于空
    if ((size >= threshold) && (null != table[bucketIndex])) {
        // 以原數(shù)組長(zhǎng)度的2倍擴(kuò)容
        resize(2 * table.length);
        hash = (null != key) ? sun.misc.Hashing.singleWordWangJenkinsHash(key) : 0;
        bucketIndex = indexFor(hash, table.length);
    }

    createEntry(hash, key, value, bucketIndex);
}
// bucketIndex為要放進(jìn)容器的下標(biāo)
// 創(chuàng)建 Entry插入到 table數(shù)組 bucketIndex下標(biāo)鏈表中的頭部
void createEntry(int hash, K key, V value, int bucketIndex) {
    HashMapEntry<K,V> e = table[bucketIndex];
    // 哈希值, key, value, next指針
    table[bucketIndex] = new HashMapEntry<>(hash, key, value, e);
    size++;
}
// 擴(kuò)容數(shù)組
void resize(int newCapacity) {
    HashMapEntry[] oldTable = table;
    int oldCapacity = oldTable.length;
    if (oldCapacity == MAXIMUM_CAPACITY) {
        threshold = Integer.MAX_VALUE;
        return;
    }

    HashMapEntry[] newTable = new HashMapEntry[newCapacity];
    transfer(newTable);
    table = newTable;
    threshold = (int)Math.min(newCapacity * loadFactor, MAXIMUM_CAPACITY + 1);
}
// 將原有數(shù)據(jù)遷移到擴(kuò)容后的數(shù)組當(dāng)中
void transfer(HashMapEntry[] newTable) {
    int newCapacity = newTable.length;
    // 外不循環(huán), 遍歷遠(yuǎn)table元素
    for (HashMapEntry<K,V> e : table) {
        // 內(nèi)部循環(huán), 遍歷table元素中的鏈表
        while(null != e) {
            HashMapEntry<K,V> next = e.next;
            // 根據(jù)新的數(shù)組長(zhǎng)度重新計(jì)算下標(biāo)
            int i = indexFor(e.hash, newCapacity);
            // 相當(dāng)于將 Node e插入到當(dāng)前下標(biāo)鏈表中的頭部
            e.next = newTable[i];
            newTable[i] = e;
            e = next;
        }
    }
}

# get

public V get(Object key) {
    if (key == null)
        return getForNullKey();
    // 根據(jù)key 獲取對(duì)應(yīng)的 Entry
    Map.Entry<K,V> entry = getEntry(key);

    return null == entry ? null : entry.getValue();
}

// 獲取 key 為 NULL的 value
private V getForNullKey() {
    if (size == 0) {
        return null;
    }
    // 在 下標(biāo)為0的 鏈表中循環(huán)查找
    for (HashMapEntry<K,V> e = table[0]; e != null; e = e.next) {
        if (e.key == null)
            return e.value;
    }
    return null;
}

final Map.Entry<K,V> getEntry(Object key) {
    if (size == 0) {
        return null;
    }

    int hash = (key == null) ? 0 : sun.misc.Hashing.singleWordWangJenkinsHash(key);
    // 遍歷鏈表
    for (HashMapEntry<K,V> e = table[indexFor(hash, table.length)];
         e != null;
         e = e.next) {
        Object k;
        // 匹配 哈希值和 key
        if (e.hash == hash &&
                ((k = e.key) == key || (key != null && key.equals(k))))
            return e;
    }
    return null;
}

# remove

public V remove(Object key) {
    Map.Entry<K,V> e = removeEntryForKey(key);
    return (e == null ? null : e.getValue());
}

final Map.Entry<K,V> removeEntryForKey(Object key) {
    if (size == 0) {
        return null;
    }
    int hash = (key == null) ? 0 : sun.misc.Hashing.singleWordWangJenkinsHash(key);
    int i = indexFor(hash, table.length);
    HashMapEntry<K,V> prev = table[i];
    HashMapEntry<K,V> e = prev;

    while (e != null) {
        HashMapEntry<K,V> next = e.next;
        Object k;
        if (e.hash == hash &&
                ((k = e.key) == key || (key != null && key.equals(k)))) {
            modCount++;
            size--;
            // prev == e 表明第一次循環(huán)就中標(biāo)
            if (prev == e)
                table[i] = next;
            else
                // 前一個(gè)Node 連接 nextNode
                prev.next = next;
            // 子類重寫(xiě), 空方法
            e.recordRemoval(this);
            return e;
        }
        prev = e;
        e = next;
    }

    return e;
}

# entrySet()

// entrySet() 和 keySet() 都是一個(gè)意思
private Set<Map.Entry<K,V>> entrySet0() {
    Set<Map.Entry<K,V>> es = entrySet;
    return es != null ? es : (entrySet = new EntrySet());
}
// EntrySet
public final void forEach(Consumer<? super Map.Entry<K,V>> action) {
    HashMapEntry<K,V>[] tab;
    if (action == null)
        throw new NullPointerException();
    if (size > 0 && (tab = table) != null) {
        int mc = modCount;
        // 外部循環(huán)遍歷 tab 數(shù)組
        for (int i = 0; i < tab.length; ++i) {
            // 內(nèi)部循環(huán) 遍歷鏈表
            // 規(guī)則是從 下標(biāo) 0開(kāi)始遍歷鏈表, 鏈表結(jié)束后 在遍歷下標(biāo)1 ...
            for (HashMapEntry<K,V> e = tab[i]; e != null; e = e.next) {
                action.accept(e);
                // 等號(hào)不成立, 說(shuō)明出現(xiàn)了并發(fā)錯(cuò)誤
                if (modCount != mc) {
                    throw new ConcurrentModificationException();
                }
            }
        }
    }
}
// HashIterator
// KeySet 調(diào)用 iterator 會(huì)調(diào)用該方法獲取Entry, 在調(diào)用getKey
// 規(guī)則也和 foreach() 一樣也是從下標(biāo)0開(kāi)始 遍歷
final Map.Entry<K,V> nextEntry() {
    if (modCount != expectedModCount)
        throw new ConcurrentModificationException();
    HashMapEntry<K,V> e = next;
    if (e == null)
        throw new NoSuchElementException();

    if ((next = e.next) == null) {
        HashMapEntry[] t = table;
        while (index < t.length && (next = t[index++]) == null)
        ;
    }
    current = e;
    return e;
}

LinkedHashMap

LinkedHashMap繼承于HashMap, 利用雙向循環(huán)鏈表保證順序

# init

void init() {
    // 初始化header, before和after都指向自己
    header = new LinkedHashMapEntry<>(-1, null, null, null);
    header.before = header.after = header;
}

# put

void createEntry(int hash, K key, V value, int bucketIndex) {
    HashMapEntry<K,V> old = table[bucketIndex];
    LinkedHashMapEntry<K,V> e = new LinkedHashMapEntry<>(hash, key, value, old);
    table[bucketIndex] = e;
    // 到上面和 HashMap一樣, 插入到當(dāng)前下標(biāo)鏈表的頭部
    e.addBefore(header);
    size++;
}

// 該方法傳入 header
// 如果說(shuō)雙向循環(huán)鏈表中 header為頭部, 那么這里就是插入到隊(duì)尾
private void addBefore(LinkedHashMapEntry<K,V> existingEntry) {
    // 新元素 after 指向 header
    after  = existingEntry;
    // 新元素 before 指向隊(duì)尾, 也有可能是header
    before = existingEntry.before;
    // 原隊(duì)尾元素 after 指向新元素
    before.after = this;
    // header.before 指向新元素
    after.before = this;
}
void transfer(HashMapEntry[] newTable) {
    int newCapacity = newTable.length;
    // 因?yàn)槊總€(gè)元素之前都有鏈表關(guān)系, 所以這里沒(méi)有必要雙重循環(huán), 數(shù)組和鏈表
    // 元素 e 從header.after開(kāi)始
    for (LinkedHashMapEntry<K,V> e = header.after; e != header; e = e.after) {
        int index = indexFor(e.hash, newCapacity);
        e.next = newTable[index];
        newTable[index] = e;
    }
}

# remove()

void recordRemoval(HashMap<K,V> m) {
    remove();
}
private void remove() {
    before.after = after;
    after.before = before;
}

# foreach()

public void forEach(BiConsumer<? super K, ? super V> action) {
    if (action == null)
        throw new NullPointerException();
    int mc = modCount;
    // header.after 開(kāi)始直到 header為止, header不參與
    for (LinkedHashMapEntry<K,V> e = header.after; modCount == mc && e != header; e = e.after)
        action.accept(e.key, e.value);
    if (modCount != mc)
        throw new ConcurrentModificationException();
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子沫屡,更是在濱河造成了極大的恐慌准谚,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,723評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)粹舵,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)骂倘,“玉大人眼滤,你說(shuō)我怎么就攤上這事±裕” “怎么了诅需?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,998評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)荧库。 經(jīng)常有香客問(wèn)我堰塌,道長(zhǎng),這世上最難降的妖魔是什么分衫? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,323評(píng)論 1 279
  • 正文 為了忘掉前任场刑,我火速辦了婚禮,結(jié)果婚禮上蚪战,老公的妹妹穿的比我還像新娘牵现。我一直安慰自己,他們只是感情好屎勘,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布施籍。 她就那樣靜靜地躺著居扒,像睡著了一般概漱。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上喜喂,一...
    開(kāi)封第一講書(shū)人閱讀 49,079評(píng)論 1 285
  • 那天瓤摧,我揣著相機(jī)與錄音,去河邊找鬼玉吁。 笑死照弥,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的进副。 我是一名探鬼主播这揣,決...
    沈念sama閱讀 38,389評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼悔常,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了给赞?” 一聲冷哼從身側(cè)響起机打,我...
    開(kāi)封第一講書(shū)人閱讀 37,019評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎片迅,沒(méi)想到半個(gè)月后残邀,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,519評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡柑蛇,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評(píng)論 2 325
  • 正文 我和宋清朗相戀三年芥挣,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片耻台。...
    茶點(diǎn)故事閱讀 38,100評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡空免,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出盆耽,到底是詐尸還是另有隱情鼓蜒,我是刑警寧澤,帶...
    沈念sama閱讀 33,738評(píng)論 4 324
  • 正文 年R本政府宣布征字,位于F島的核電站都弹,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏匙姜。R本人自食惡果不足惜畅厢,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望氮昧。 院中可真熱鬧框杜,春花似錦、人聲如沸袖肥。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,289評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)椎组。三九已至油狂,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間寸癌,已是汗流浹背专筷。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,517評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蒸苇,地道東北人磷蛹。 一個(gè)月前我還...
    沈念sama閱讀 45,547評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像溪烤,于是被迫代替她去往敵國(guó)和親味咳。 傳聞我的和親對(duì)象是個(gè)殘疾皇子庇勃,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容