码迷,mamicode.com
首页 > 其他好文 > 详细

LinkedHashMap

时间:2019-02-25 01:00:24      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:extend   bic   第一个   int   key   class   static   map   dha   

LinkedHashMap既是一个HashMap,也是一个链表

package java.util;

import java.util.function.Consumer;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.io.IOException;

public class LinkedHashMap<K,V>
    extends HashMap<K,V>
    implements Map<K,V> {
    
    static class Entry<K,V> extends HashMap.Node<K,V> {
        // LinkedHashMap的每个Entry元素多了两个引用
        Entry<K,V> before, after;
        Entry(int hash, K key, V value, Node<K,V> next) {
            super(hash, key, value, next);
        }
    }
    // 第一个元素
    transient LinkedHashMap.Entry<K,V> head;
    // 最后一个元素
    transient LinkedHashMap.Entry<K,V> tail;
}

// HashMap.Node
static class Node<K,V> implements Map.Entry<K,V> {
    final int hash;
    final K key;
    V value;
    Node<K,V> next;
}

 

LinkedHashMap

标签:extend   bic   第一个   int   key   class   static   map   dha   

原文地址:https://www.cnblogs.com/Mike_Chang/p/10428764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!