关于java:Hashmap和concurrentHashMap有什么区别?

what is difference between Hashmap and concurrent HashMap?

本问题已经有最佳答案,请猛点这里访问。

我刚开始在Google上搜索stackoverflow,但我无法理解它们之间的基本区别。


ConcurrentHashMap是线程安全的,而基本HashMap不是线程安全的。这在官方文件中也有解释。