Should getters and setters be synchronized?

Viewed 35432
private double value;

public synchronized void setValue(double value) {
    this.value = value;
}
public double getValue() {
    return this.value;
}

In the above example is there any point in making the getter synchronized?

4 Answers
Related