concurrenthasmap

Posted albertshine

tags:

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

concur‘renthashmap

  • java1.7

    • hashMap在单线程中使用大大提高效率,在多线程的情况下使用hashTable来确保安全。hashTable中使用synchronized关键字来实现安全机制,但是synchronized是对整张hash表进行锁定即让线程独享整张hash表,在安全同时造成了浪费。concurrentHashMap采用分段加锁的机制来确保安全

  • java1.8

    • concurrenthashmap取消了segment分段锁,采用cas和synchronized来保证并发安全,数据结构跟hashmap1.8的结构类似,数组+链表或红黑二叉树

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