java可重入锁-概念

可重入锁

如果一个线程外层函数获取锁之后,内层函数也会获取锁。同一线程在外层方法获取锁的时候,再进入内层方法会自动获取锁。也就是说,线程可以进入任何一个它已经拥有的锁所同步着的代码块。ReentrantLock 和 synchronized 就是典型的可重入锁。

(1). 基于 synchronized
public class ReentrantLockTest {
    public static void main(String[] args) {
        Phone phone = new Phone();
        // 第一个线程
        new Thread(() -> {
            phone.sendMsg();
        }, "t1").start();
        // 第二个线程
        new Thread(() -> {
            phone.sendMsg();
        }, "t2").start();
    }
}

class Phone {
    // 发送短信同步方法
    public synchronized void sendMsg() {
        System.out.println(Thread.currentThread().getName() + " called sendMsg()");
        // 进入另外一个同步着的方法
        sendEmail();
    }
    // 发送邮件同步方法
    public synchronized void sendEmail() {
        System.out.println(Thread.currentThread().getName() + " ******called sendEmail()");
    }
}
运行结果:
t1 called sendMsg()             // t1线程在外层方法获取锁的时候
t1 ******called sendEmail()     // t1再进入内层方法会自动获取锁
t2 called sendMsg()
t2 ******called sendEmail()
(2). 基于 ReentrantLock
public class ReentrantLockTest {
    public static void main(String[] args) {
        Phone phone = new Phone();
        // 第一个线程
        Thread t1 = new Thread(phone, "t1");
        // 第二个线程
        Thread t2 = new Thread(phone, "t2");

        t1.start();
        t2.start();
    }
}

class Phone implements Runnable {
    ReentrantLock lock = new ReentrantLock();
    // 发送短信方法
    public void sendMsg() {
        lock.lock();
        try {
            System.out.println(Thread.currentThread().getName() + " called sendMsg()");
            // 进入另一个方法
            sendEmail();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            lock.unlock();
        }
    }
    // 发送邮件方法
    public void sendEmail() {
        lock.lock();
        try {
            System.out.println(Thread.currentThread().getName() + " ******called sendEmail()");
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            lock.unlock();
        }
    }

    @Override
    public void run() {
        sendMsg();
    }
}
运行结果:
t1 called sendMsg()             // t1线程在外层方法获取锁的时候
t1 ******called sendEmail()     // t1再进入内层方法会自动获取锁
t2 called sendMsg()
t2 ******called sendEmail()
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值