You asked for a simple example, so I'll give one. Suppose you're designing a circle class. A circle can be characterized by its diameter:
public class Circle {
private double diameter;
public Circle(double diameter) {
this.diameter = diameter;
}
}
A caller might want to know the diameter of the circle, so you add a getter:
public class Circle {
private double diameter;
public Circle(double diameter) {
this.diameter = diameter;
}
public double getDiameter() {
return this.diameter;
}
}
You might also want to get the area of the circle, so you add a getter for the area:
public double getArea() {
return Math.PI * (this.diameter / 2) * (this.diameter / 2);
}
And then you realize that using the radius rather than the diameter is easier for the internal methods of the circle. But you want to keep all the users of your class as is, to avoid breaking a lot of existing code. So you change the internals of the class without changing the interface:
public class Circle {
private double radius;
public Circle(double diameter) {
this.radius = diameter / 2;
}
public double getArea() {
return Math. PI * radius * radius;
}
public double getDiameter() {
return this.radius * 2;
}
}
And finally, you would like to change the diameter of the circle, so you add a setter:
public void setDiameter(double diameter) {
this.radius = diameter / 2;
}
But wait, a circle with a negative diameter makes no sense, so you make the method safer:
public void setDiameter(double diameter) {
if (diameter <= 0) {
throw new IllegalArgumentException("diameter must be > 0");
}
this.radius = diameter / 2;
}
Had you precomputed the area at construction time, the setDiameter would have had to change the value of the area as well:
public class Circle {
private double radius;
private double area;
public Circle(double diameter) {
this.radius = diameter / 2;
this.area = Math. PI * radius * radius;
}
public double getArea() {
return area;
}
public double getDiameter() {
return this.radius / 2;
}
public void setDiameter(double diameter) {
this.radius = diameter / 2;
// the area must also be changed, else the invariants are broken.
this.area = Math. PI * radius * radius;
}
}
Getters and setters are just methods. But they follow a naming conventions that makes your code easy to grasp, and usable by a number of frameworks which rely on these conventions.
Demo. Fortunately it wont compile as it doesn't return anything, but the compiler errors may be confusing.) – Tom Hawtin - tackline Dec 31 '11 at 3:19