Hashmap 和并发 HashMap 有啥区别? [复制]
Posted
技术标签:
【中文标题】Hashmap 和并发 HashMap 有啥区别? [复制]【英文标题】:what is difference between Hashmap and concurrent HashMap? [duplicate]Hashmap 和并发 HashMap 有什么区别? [复制] 【发布时间】:2013-07-28 11:26:39 【问题描述】:我是 *** 的新手,通过谷歌搜索但无法理解它们之间的基本区别。
【问题讨论】:
通过ria101.wordpress.com/2011/12/12/…。这是一篇广泛而精彩的文章 【参考方案1】:ConcurrentHashMap
是线程安全的,而基本的HashMap
不是。 official documentation.
【讨论】:
检查可能的 dup 问题,ConcurrentHashMap
除了线程安全之外还有更多内容。
输入此答案后,我看到了您指向 dup 问题的链接。我想这个问题很快就会结束;)以上是关于Hashmap 和并发 HashMap 有啥区别? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
java中HashMap和HashTable有啥共同点和区别
HashMap map= new HashMap(); Hashmap map=null;有啥区别?
java中 ,ArrayList<HashMap<String,Object>> 和 HashMap<String, Object>() 有啥区别?