Java基础之线程5-线程同步死锁
Posted risuschen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java基础之线程5-线程同步死锁相关的知识,希望对你有一定的参考价值。
死锁:线程之间因条件相互竞争,导致线程都不能正常执行完,从而产生了死锁。
死锁的例子:
public class TestDeadLock 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 (InterruptedException e) {
e.printStackTrace();
}
synchronized (o2){
System.out.println("1");
}
}
}
if (flag == 0){
synchronized (o2){
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
synchronized (o1){
System.out.println("0");
}
}
}
}
public static void main(String[] args) {
TestDeadLock td1 = new TestDeadLock();
TestDeadLock td2 = new TestDeadLock();
td1.flag = 1;
td2.flag = 0;
Thread t1 = new Thread(td1);
Thread t2 = new Thread(td2);
t1.start();
t2.start();
}
}
以上是关于Java基础之线程5-线程同步死锁的主要内容,如果未能解决你的问题,请参考以下文章
java多线程同步以及线程间通信详解&消费者生产者模式&死锁&Thread.join()(多线程编程之二)