我们都知道迭代排序的集合(除了他们的这种实现)doesn't guarantee
。所以我试图用下面的示例代码来确保这一点。
public static void main(String[] args) throws InterruptedException {
Map<String,String> lMap=new HashMap<String, String>();
lMap.put("A", "A");
lMap.put("B", "B");
lMap.put("C", "C");
lMap.put("D", "D");
lMap.put("E", "E");
lMap.put("F", "F");
lMap.put("G", "G");
lMap.put("H", "H");
lMap.put("I", "I");
lMap.put("J", "J");
lMap.put("K", "K");
lMap.put("L", "L");
for(int i=0;i<10000;i++){
Thread.sleep(100);
Set<Entry<String, String>> entrYset=lMap.entrySet();
for(Map.Entry<String, String> e:entrYset){
System.out.println(e.getKey()+" , "+e.getValue());
}
System.out.println("******************************************************");
}
}
上面的代码我执行了很多次,发现是按顺序打印记录。
我的问题是如果 java 声称HashMap是无序的,那么为什么这些记录是按顺序打印的。如果有人可以举例说明,那就太好了。