java怎么拦截某个对象
523
2023-06-04
Java中遍历ConcurrentHashMap的四种方式详解
这篇文章主要介绍了java中遍历ConcurrentHashMap的四种方式详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
方式一:在for-each循环中使用entries来遍历
System.out.println("方式一:在for-each循环中使用entries来遍历");for (Map.Entry<yuIvaKBFV;String, String> entry: map.entrySet()) { System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());}
方法二:在for-each循环中遍历keys或values,这种方式适用于需要值或者键的情况,方法二比方法一快了10%
System.out.println("方法二:在for-each循环中遍历keys或values,这种方式适用于需要值或者键的情况");//遍历键for (String key : map.keySet()) { System.out.println("key = " + key);}//遍历值for (String value : map.values()) { System.out.println("value = " + value);}
方法三:使用Iterator遍历,使用并发集合不会报异常,性能类似于方法二
//使用泛型
Iterator
System.out.println("使用Iterator遍历,并且使用泛型:");
while (entries.hasNext()) {
Map.Entry
System.out.printhttp://ln("Key = " + entry.getKey() + ", Value = " + entry.getValue());
//注意这里操作了集合,下面的的遍历不会再打印0
if("0".equals(entry.getKey())) {
map.remove(entry.getKey());
}
}
//不使用泛型
Iterator entrys = maphttp://.entrySet().iterator();
System.out.println("使用Iterator遍历,并且不使用泛型");
while (entrys.hasNext()) {
Map.Entry entry = (Map.Entry) entrys.next();
String key = (String)entry.getKey();
String value = (String)entry.getValue();
System.out.println("Key = " + key + ", Value = " + value);
}
方式四:通过键找值遍历,该方法效率相当低,不建议使用
System.out.println("方式四:通过键找值遍历");
for (String key : map.keySet()) {
String value = map.get(key);
System.out.println("Key = " + key + ", Value = " + value);
}
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~