Android 安卓 如何遍历concurrenthashmap

2014-05-04 09:43

和遍历HashMap是一样的,有多种方法,给出计算较少的一种

ConcurrentHashMap<K,V> map=....数据

for(Map.Entry<K,V> e: map.entrySet() ){

       System.out.println("键:"+e.getKey()+", 值:"+e.getValue());

}

^