教你一文认清读写锁的重要性(提高并发效率-JUC)

本文探讨了ReentrantReadWriteLock的使用,展示了如何通过读写锁实现多线程环境下资源的原子性和独占性,提高并发性能。通过对比未加锁和加锁后的代码,验证了读写锁在保证写操作原子性的同时,允许多个读操作并发执行。
摘要由CSDN通过智能技术生成

读写锁小结(ReentrantReadWriteLock)

  • 写-写互斥

  • 读-写互斥

  • 读-读不互斥

读-读不互斥:让读写锁比普通锁有更高的并发性。是lock能取代synchronized的原因之一。
模拟多线程对 缓存资源类map 的读、写操作。要保证写操作的原子性 和 独占性 才算成功,即从开始写入 至 写入完成是一个不可分割的原子操作。

读写锁验证代码

1.未加锁前代码
package lock;

import java.util.HashMap;
import java.util.Map;

class MyResource {
	// 缓存一定要加volatile,主要是保证缓存的可见性。立刻通知其他线程缓存的变更
    private volatile Map<String, Object> map = new HashMap<>();

    public void put(String key, Object value) {
        System.out.println("线程" + Thread.currentThread().getName() + " : 开始写入(未完成)");
        try { Thread.sleep(300); } catch (InterruptedException e) { e.printStackTrace(); }
        map.put(key, value);
        System.out.println("线程" + Thread.currentThread().getName() + " : 写入完成 " + value);
    }
    public void get(String key) {
        System.out.println("线程" + Thread.currentThread().getName() + " : 开始读取");
        try { Thread.sleep(300); } catch (InterruptedException e) { e.printStackTrace(); }
        System.out.println("线程" + Thread.currentThread().getName() + " : 读取到 " + map.get(key));
    }
}

public class ReadWriteLock {
    public static void main(String[] args) {
        MyResource myResource = new MyResource();

        for(int i = 0; i < 5; i++) {
            final int tempInt = i;
            new Thread(() -> {
                myResource.put(tempInt + "", tempInt + "");
            }, String.valueOf(i)).start();
        }

        for(int i = 0; i < 5; i++) {
            final int tempInt = i;
            new Thread(() -> {
                myResource.get(tempInt + "");
            }, String.valueOf(i)).start();
        }
    }
}
如下运行截图未达到写操作的原子性 和 独占性

在这里插入图片描述

2.加锁后代码
package lock;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.locks.ReentrantReadWriteLock;

class MyResource {
    private volatile Map<String, Object> map = new HashMap<>();
    private ReentrantReadWriteLock lock = new ReentrantReadWriteLock();
    public void put(String key, Object value) {
        lock.writeLock().lock();
        try {
            System.out.println("线程" + Thread.currentThread().getName() + " : 开始写入(未完成)");
            try { Thread.sleep(300); } catch (InterruptedException e) { e.printStackTrace(); }
            map.put(key, value);
            System.out.println("线程" + Thread.currentThread().getName() + " : 写入完成 " + value);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {

            lock.writeLock().unlock();
        }
    }
    public void get(String key) {
        lock.readLock().lock();
        try {
            System.out.println("线程" + Thread.currentThread().getName() + " : 开始读取");
            try { Thread.sleep(300); } catch (InterruptedException e) { e.printStackTrace(); }
            System.out.println("线程" + Thread.currentThread().getName() + " : 读取到 " + map.get(key));
        } catch (Exception e) {
            e.printStackTrace();
        } finally {

            lock.readLock().unlock();
        }
    }
}

public class ReadWriteLock {
    public static void main(String[] args) {
        MyResource myResource = new MyResource();

        for(int i = 0; i < 5; i++) {
            final int tempInt = i;
            new Thread(() -> {
                myResource.put(tempInt + "", tempInt + "");
            }, String.valueOf(i)).start();
        }

        for(int i = 0; i < 5; i++) {
            final int tempInt = i;
            new Thread(() -> {
                myResource.get(tempInt + "");
            }, String.valueOf(i)).start();
        }
    }
}

运行截图可知每个写操作都是原子性的

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值