JAVA多线程—线程死锁

线程死锁:

创建两个字符串a和b,再创建两个线程A和B,让每个线程都用synchronized锁住字符串(A先锁a,再去锁b;B先锁b,再锁a),如果A锁住a,B锁住b,A就没办法锁住b,B也没办法锁住a,这时就陷入了死锁。直接贴代码:

/*
线程死锁
 */
public class DeadLock {

    public static String str1 = "str1";
    public static String str2 = "str2";
    public static void main(String[] args) {
        Thread t1 = new Thread(new Lock1());
        Thread t2 = new Thread(new Lock2());
        t1.start();
        t2.start();
    }
}

class  Lock1 implements Runnable{
    @Override
    public void run() {
        try {
            System.out.println("线程"+Thread.currentThread().getName()+"开始运行");
            while (true){
                synchronized (DeadLock.str1){
                    System.out.println("线程"+Thread.currentThread().getName()+"锁住str1");
                    Thread.sleep(3000);
                    synchronized (DeadLock.str2){
                        System.out.println("线程"+Thread.currentThread().getName()+"锁住str2");
                    }
                }
            }
        }catch (Exception e){
         e.printStackTrace();
        }
    }
}

class  Lock2 implements Runnable{
    @Override
    public void run() {
        try {
            System.out.println("线程"+Thread.currentThread().getName()+"开始运行");
            while (true){
                synchronized (DeadLock.str2){
                    System.out.println("线程"+Thread.currentThread().getName()+"锁住str2");
                    Thread.sleep(3000);
                    synchronized (DeadLock.str1){
                        System.out.println("线程"+Thread.currentThread().getName()+"锁住str1");
                    }
                }
            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

3分钟秒懂大数据

你的打赏就是对我最大的鼓励

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值