码迷,mamicode.com
首页 > 其他好文 > 详细

死锁的例子

时间:2019-03-01 12:23:41      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:object   ble   new   oid   tac   print   pre   cat   override   

class DeadLock implements Runnable {
    public int flag = 1;
    static Object o1 = new Object(), o2 = new Object();
    @Override
    public void run() {
        System.out.println("flag=" + flag);
        if (flag == 1) {
            synchronized (o1) {
                try {
                    Thread.sleep(500);
                } catch (Exception e) {
                    e.printStackTrace();
                }
                synchronized (o2) {
                    System.out.println("1");
                }
            }
        }
        if (flag == 0) {
            synchronized (o2) {
                try {
                    Thread.sleep(500);
                } catch (Exception e) {
                    e.printStackTrace();
                }
                synchronized (o1) {
                    System.out.println("0");
                }
            }
        }
    }
}

 

死锁的例子

标签:object   ble   new   oid   tac   print   pre   cat   override   

原文地址:https://www.cnblogs.com/lxcmyf/p/10455440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!