以下是否意味着只有一个线程可以在对象的任何方法中?或者多个线程可以在不同的方法中,只是不同的方法?为什么?
public class SynchronizedCounter {
private int c = 0;
public synchronized void increment() {
c++;
}
public synchronized void decrement() {
c--;
}
public synchronized int value() {
return c;
}
}