HashMap 一般遍历Map mapnew HashMap()Iterator itmap.entrySet().iterator()while(it.hasNext){Map.En
HashMap 一般遍历
Map map=new HashMap()
Iterator it=map.entrySet().iterator();
while(it.hasNext){
Map.Entry entry=it.next();
Object value=entry.getValue();
}
