高并发场景下HashSet和HashMap线程不安全问题解析

本文探讨了在高并发场景中,HashSet和HashMap可能出现的并发修改异常,并提出使用CopyOnWriteArraySet和ConcurrentHashMap作为替代方案,这两种数据结构利用了Unsafe类的CAS操作确保线程安全。
摘要由CSDN通过智能技术生成

1.HashSet和HashMap在高并发场景下也会报java.util.ConcurrentModificationException异常
2.解决办法:
Set s= new CopyOnWriteArraySet<>();

    private final CopyOnWriteArrayList<E> al;

    /**
     * Creates an empty set.
     */
    public CopyOnWriteArraySet() {
   
        al = new CopyOnWriteArrayList<E>();
    }

Map m= new ConcurrentHashMap<>();
底层用到了Unsafe类的CAS操作

 /**
     * Maps the specified key to the specified value in this table.
     * Neither the key nor the value can be null.
     *
     * <p>The value can be retrieved by calling the {@code get} method
     * with a key that is equal to the original key.
     *
     * @param key key with which the specified value is to be associated
     * @param value value to be associated with the specified key
     * @return the previous value associated with {@code key}, or
     *         {@code null} if there was no mapping for {@code key}
     * @throws NullPointerException if the specified key or value is null
     */
    public V put(K key, V value) {
   
        return putVal(key, value, false);
    }

    /** Implementation for put and putIfAbsent */
    final V putVal(K key, V value, boolean onlyIfAbsent) {
   
        if (key == null || value == null) throw new NullPointerException()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值