句子上的`synchronized`是不是语法糖?

时间:2011-03-12 07:16:06

标签: java synchronized

  

可能重复:
  synchronized block vs synchronized method?

即,以下两个完全相同?

A)

public synchronized void method1() {
    // ...
}

b)中

public void method1() {
    synchronized (this) {
        // ...
    }
}

0 个答案:

没有答案