标签:oid lin null 维护 使用 public str 集合 操作
LinkedHashMap 使用链表维护了一个添加进集合中的顺序,导致遍历时是以添加的顺序输出的(但不能说是“有序的”),如下:
public class TestLinkedHashMap {
public static void main(String[] args) {
Map map = new LinkedHashMap();
map.put(12, "53d");
map.put("s", "7d");
map.put(null, 33);
System.out.println(map);// {12=53d, s=7d, null=33}
}
}
标签:oid lin null 维护 使用 public str 集合 操作
原文地址:http://www.cnblogs.com/chendifan/p/6535688.html