“LinkedHashMap”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
第11行: 第11行:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
[[文件:LinkedHashMap添加和取出顺序.png|无|缩略图]]

2023年5月6日 (六) 10:41的版本

package java.util;
……
public class LinkedHashMap<K,V>
    extends HashMap<K,V>
    implements Map<K,V>
{
……
transient LinkedHashMap.Entry<K,V> head;
transient LinkedHashMap.Entry<K,V> tail;
}
LinkedHashMap添加和取出顺序.png