Java 线程的死锁问题

版权声明:尊重原创,码字不易,转载需博主同意。 https://blog.csdn.net/qq_34626097/article/details/84558244

1.死锁

不同的线程分别占用对方需要的同步资源不放弃,都在等待对方放弃自己需要的同步资源,就形成了线程的死锁

2.解决方法

  1. 专门的算法、原则
    ① 比较出名的算法有(银行家算法、鸵鸟算法)
    ② 破坏死锁产生条件
  2. 尽量减少同步资源的定义
  3. 后续补充避免死锁其他相关的内容。

3.产生死锁的一个demo

//死锁的问题:处理线程同步的时候,容易出现
public class TestDeadLock {
	static StringBuffer sb1 = new StringBuffer();
	static StringBuffer sb2 = new StringBuffer();
	
	public static void main(String[] args) {
		new Thread() {
			public void run() {
				synchronized(sb1) {
					try {
						Thread.currentThread().sleep(10);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
					sb1.append("A");
					synchronized(sb2) {
						sb2.append("B");
						System.out.println(sb1);
						System.out.println(sb2);
					}
				}
			}
		}.start();
		
		new Thread() {
			public void run() {
				synchronized(sb2) {
					try {
						Thread.currentThread().sleep(10);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
					sb1.append("C");
					synchronized(sb1) {
						sb2.append("D");
						System.out.println(sb1);
						System.out.println(sb2);
					}
				}
			}
		}.start();
		
	}
}

猜你喜欢

转载自blog.csdn.net/qq_34626097/article/details/84558244