0
我有兩個類如何同步父類的嵌套Java類方法?
public class A {
private byte[] buf;
public synchronized void foo() {
// does something with buf
}
public class B {
public synchronized void bar() {
// also does something with buf
}
}
}
據我所知,方法bar()
上B
類的一個實例同步。我如何在類A
的對象上同步它以保護buf
?
'synchronized(A.this)'是我所需要的。謝謝! – Antonio