思则大道至简,疑则谜团重重!
和遍历HashMap是一样的,有多种方法,给出计算较少的一种
ConcurrentHashMap<K,V> map=....数据
for(Map.Entry<K,V> e: map.entrySet() ){
System.out.println("键:"+e.getKey()+", 值:"+e.getValue());
}