简单死锁代码(java)版

菜鸟之前在求职一些公司里笔试里会有死锁代码书写的要求,这里有非常简单的代码展示,首先你要懂得什么是死锁,如下`

public class DeadThresad {
    static class Zs{
        public void get(){
        }
    }
    static class Ls{
        public void get(){
        }
    }
    public static class ThreadDeadlock implements  Runnable{
       private static  Zs zs = new Zs();
        private  static  Ls ls = new Ls();
        private boolean flag = false;

        @Override
        public void run() {
            if(flag){
                synchronized (zs){
                    try{
                        Thread.sleep(1000);
                    }catch (InterruptedException e){
                        e.printStackTrace();
                    }
                    synchronized (zs){
                        zs.get();
                    }
               }
            }else{
                synchronized (ls){
                    try{
                        Thread.sleep(1000);
                    }catch (InterruptedException e){
                        e.printStackTrace();
                    }
                    synchronized (ls){
                        ls.get();
                    }
                }
            }

        }
    }
    public static  void  main(String[] args){
        ThreadDeadlock tdl1 = new ThreadDeadlock();
        ThreadDeadlock tdl2 = new ThreadDeadlock();
        tdl1.flag = true;
        tdl2.flag = false;
        Thread td = new Thread(tdl1);
        Thread td2 = new Thread(tdl2);
        td.start();
        td2.start();
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值