java多线程之线程死锁
产生死锁的主要原因:
如果系统资源充足,进程的资源请求都能够得到满足,死锁出现的可能性就很低,否则就会因争夺有限的资源而陷入死锁。其次,
进程运行推进顺序与速度不同,也可能产生死锁。
产生死锁的四个必要条件:
这四个条件是死锁的必要条件,只要系统发生死锁,这些条件必然成立,而只要上述条件之一不满足,就不会发生死锁。
示例:
package com.lock; public class Test implements Runnable { public int flag = 1; static Object obj1 = new Object(), obj2 = new Object(); public void run() { System.out.println("flag= " + flag); if (flag == 1) { synchronized (obj1) { try { Thread.sleep(500); } catch (InterruptedException e) { e.printStackTrace(); } synchronized (obj2) { System.out.println("1"); } } } if (flag == 0) { synchronized (obj2) { try { Thread.sleep(500); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } synchronized (obj1) { System.out.println("0"); } } } } public static void main(String[] args) { Test td1 = new Test(); Test td2 = new Test(); td1.flag = 1; td2.flag = 0; Thread t1 = new Thread(td1); Thread t2 = new Thread(td2); t1.start(); t2.start(); } }
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/gao_chun/article/details/47187991