了解死锁,同步

时间:2014-08-04 13:52:05

标签: java multithreading

我最近在oracle网站上的java教程中阅读并发。今天我读到了关于死锁/同步我能理解的一些事情。

同步:

synchronized方法:没有两个线程可以调用同一个对象的两个不同的同步方法。在给定的时间点,即使有多个其他同步方法,每个对象也会执行一个同步方法。

是我的理解。

死锁:

在下面的代码死锁闭塞但我只是不明白为什么?为什么两个线程都在等待彼此摆脱弓法?

package com.tutorial;

public class Deadlock {
    static class Friend {
        private final String name;
        public Friend(String name) {
            this.name = name;
        }
        public String getName() {
            return this.name;
        }
        public synchronized void bow(Friend bower) {
            System.out.format("%s: %s"
                + "  has bowed to me!%n", 
                this.name, bower.getName());
            bower.bowBack(this);
        }
        public synchronized void bowBack(Friend bower) {
            System.out.format("%s: %s"
                + " has bowed back to me!%n",
                this.name, bower.getName());
        }
    }

    public static void main(String[] args) {
        final Friend alphonse =
            new Friend("Alphonse");
        final Friend gaston =
            new Friend("Gaston");
        new Thread(new Runnable() {
            public void run() { alphonse.bow(gaston); }
        }).start();
       new Thread(new Runnable() {
            public void run() { gaston.bow(alphonse); }
        }).start();
    }
}

1 个答案:

答案 0 :(得分:3)

  1. alphonse.bow(锁定apohonse)
  2. gaston.bow(锁定加斯顿)
  3. alphonse.bow调用gaston.bowback(无法锁定gaston因为在alphonse的线程中因此被阻止但是持有alphonse锁)
  4. gaston.bow调用alphose.bowback(无法锁定alphonse,因为在gaston的帖子中被阻止但是持有gaston锁)
  5. 死锁