黑马程序员技术交流社区
标题:
为什么我这个死锁锁不住?
[打印本页]
作者:
liuhao_hm
时间:
2015-7-12 22:34
标题:
为什么我这个死锁锁不住?
class Test implements Runnable
{
private boolean flag;
Test(boolean flag)
{
this.flag = flag;
}
public void run()
{
if(flag)
{
while(true)
{
synchronized(MyLock.locka)
{
System.out.println(Thread.currentThread().getName()+"if...");
}
synchronized(MyLock.lockb)
{
System.out.println(Thread.currentThread().getName()+"if...");
}
}
}
else
{
while(true)
{
synchronized(MyLock.lockb)
{
System.out.println(Thread.currentThread().getName()+"else...");
}
synchronized(MyLock.locka)
{
System.out.println(Thread.currentThread().getName()+"else...");
}
}
}
}
}
class MyLock
{
public static final Object locka = new Object();
public static final Object lockb = new Object();
}
class DeadlockDemo
{
public static void main(String[] args)
{
Test a = new Test(true);
Test b = new Test(false);
Thread t1 = new Thread(a);
Thread t2 = new Thread(b);
t1.start();
t2.start();
}
}
复制代码
作者:
gongyanfa123
时间:
2015-7-12 23:32
长知识了。。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2