标签: java synchronized
可能重复: synchronized block vs synchronized method?
即,以下两个完全相同?
A)
public synchronized void method1() { // ... }
b)中
public void method1() { synchronized (this) { // ... } }