concurrenthasmap
Posted albertshine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了concurrenthasmap相关的知识,希望对你有一定的参考价值。
-
java1.7
-
hashMap在单线程中使用大大提高效率,在多线程的情况下使用hashTable来确保安全。hashTable中使用synchronized关键字来实现安全机制,但是synchronized是对整张hash表进行锁定即让线程独享整张hash表,在安全同时造成了浪费。concurrentHashMap采用分段加锁的机制来确保安全
-
-
java1.8
-
以上是关于concurrenthasmap的主要内容,如果未能解决你的问题,请参考以下文章