黑马程序员技术交流社区

标题: 为什么我这个死锁锁不住? [打印本页]

作者: liuhao_hm    时间: 2015-7-12 22:34
标题: 为什么我这个死锁锁不住?
  1. class Test implements Runnable
  2. {
  3.         private boolean flag;
  4.         Test(boolean flag)
  5.         {
  6.                 this.flag = flag;
  7.         }
  8.         public void run()
  9.         {
  10.                 if(flag)
  11.                 {
  12.                         while(true)
  13.                         {
  14.                                 synchronized(MyLock.locka)
  15.                                 {
  16.                                         System.out.println(Thread.currentThread().getName()+"if...");
  17.                                 }
  18.                                         synchronized(MyLock.lockb)
  19.                                         {
  20.                                                 System.out.println(Thread.currentThread().getName()+"if...");
  21.                                         }
  22.                         }
  23.                 }
  24.                 else
  25.                 {
  26.                         while(true)
  27.                         {
  28.                                 synchronized(MyLock.lockb)
  29.                                 {
  30.                                         System.out.println(Thread.currentThread().getName()+"else...");
  31.                                 }
  32.                                         synchronized(MyLock.locka)
  33.                                         {
  34.                                                 System.out.println(Thread.currentThread().getName()+"else...");
  35.                                         }
  36.                         }
  37.                 }
  38.         }
  39. }
  40. class MyLock
  41. {
  42.         public static final Object locka = new Object();
  43.         public static final Object lockb = new Object();
  44. }

  45. class DeadlockDemo
  46. {
  47.         public static void main(String[] args)
  48.         {
  49.                 Test a = new Test(true);
  50.                 Test b = new Test(false);
  51.                 Thread t1 = new Thread(a);
  52.                 Thread t2 = new Thread(b);
  53.                 t1.start();
  54.                 t2.start();

  55.         }
  56. }
复制代码


作者: gongyanfa123    时间: 2015-7-12 23:32
长知识了。。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2