【好记性不如烂笔头】死锁之java代码

死锁: 是指两个或两个以上的进程在执行过程中,由于竞争资源或者由于彼此通信而造成的一种阻塞的现象,若无外力作用,它们都将无法推进下去。此时称系统处于死锁状态或系统产生了死锁,这些永远在互相等待的进程称为死锁进程。

 public class DeadLock {
public static void main(String[] args) {
MyThread m=new MyThread();
/*创建两个线程*/
Thread t1=new Thread(m);
Thread t2=new Thread(m);
/*线程开始运作*/
t1.start();
t2.start();
} }
class MyThread implements Runnable{
/*设立标志位,目的是让两个线程分别进入if-else的两个分支*/
public boolean flag=true;
@Override
public void run() {
// TODO Auto-generated method stub
if(flag){
/*flag一开始为真,线程t1进入if分支,然后讲flag置假,让接下来的线程进入else分支*/
flag=false;
while(true)
synchronized (this) {
synchronized (this.getClass()) {
System.out.println(Thread.currentThread().getName()+"true");
try { Thread.sleep(50); } catch (Exception e) { e.printStackTrace(); }
}
}
}else{
/*t2线程进入该分支,进入死循环*/
while(true)
synchronized (this.getClass()) {
synchronized (this) {
System.out.println(Thread.currentThread().getName()+"false");
try { Thread.sleep(50); } catch (Exception e) { e.printStackTrace(); }
}
}
}
}
运行结果:
1 Thread-0true
Thread-0true
Thread-0true
Thread-0true
Thread-1false
Thread-0true
Thread-0true
Thread-0true
Thread-0true
Thread-1false
Thread-1false
Thread-0true
Thread-0true
Thread-0true
Thread-0true
Thread-0true
Thread-1false

实现死锁的思路:两个线程,分别进入AB两个分支,AB分支的锁是互相嵌套的,设立线程休眠的点应该拥有这样的情况,A拥有B的锁,B拥有A的锁,来吧~互相伤害,哈哈。

上一篇:470. Implement Rand10() Using Rand7() (拒绝采样Reject Sampling)


下一篇:vConsole