ConcurrentHashMap和HashMap的区别

Posted ~风轻云淡~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ConcurrentHashMap和HashMap的区别相关的知识,希望对你有一定的参考价值。

1ConcurrentHashMap对整个桶数组进行了分段,而HashMap则没有

2ConcurrentHashMap在每一个分段上都用锁进行保护,从而让锁的粒度更精细一些,并发性能更好,而HashMap没有锁机制,不是线程安全的

 

以上是关于ConcurrentHashMap和HashMap的区别的主要内容,如果未能解决你的问题,请参考以下文章

ConcurrentHashMap 与同步 HashMap

hashmap和ConcurrentHashMap

java concurrenthashmap和hashmap的区别

HashMap和ConcurrentHashMap实现原理及源码分析

ConcurrentHashMap以及HashMap,HashTable的区别

HashMap 和 ConcurrentHashMap 的区别