以下は、オブジェクトの任意のメソッドに 1 つのスレッドしか存在できないことを意味しますか? または、複数のスレッドが同じメソッドではなく、異なるメソッドにある可能性がありますか? なんで?
public class SynchronizedCounter {
private int c = 0;
public synchronized void increment() {
c++;
}
public synchronized void decrement() {
c--;
}
public synchronized int value() {
return c;
}
}