“LinkedHashMap”的版本间的差异
		
		
		
		
		
		跳到导航
		跳到搜索
		
				
		
		
	
Jihongchang(讨论 | 贡献)  (建立内容为“<syntaxhighlight lang="java"> package java.util; …… public class LinkedHashMap<K,V>     extends HashMap<K,V>     implements Map<K,V> { …… } </syntaxhighli…”的新页面)  | 
				Jihongchang(讨论 | 贡献)   | 
				||
| 第7行: | 第7行: | ||
{  | {  | ||
……  | ……  | ||
| + | transient LinkedHashMap.Entry<K,V> head;  | ||
| + | transient LinkedHashMap.Entry<K,V> tail;  | ||
}  | }  | ||
</syntaxhighlight>  | </syntaxhighlight>  | ||
2023年5月6日 (六) 10:25的版本
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;
}