集合7、集合_Map接口_HashMap类_LinkedHashMap底层原理及源码分析

LinkedHashMap底层实现(了解)

集合7、集合_Map接口_HashMap类_LinkedHashMap底层原理及源码分析

源码:

static class Entry<K,V> extends HashMap.Node<K,V> {
        Entry<K,V> before, after;		//能够记录添加的元素的先后顺序
        Entry(int hash, K key, V value, Node<K,V> next) {
            super(hash, key, value, next);
        }
    }
上一篇:ASP里Request对象的探讨


下一篇:什么是mvc和mvvm?以及mvc和mvvm的区别