Self Encapsulate Field.
You use direct access to private fields inside a class.
Create a getter and setter for the field, and use only them for accessing the field.
##Example
class Range {
private int low, high;
boolean includes(int arg) {
return arg >= low && arg <= high;
}
}class Range {
private int low, high;
boolean includes(int arg) {
return arg >= getLow() && arg <= getHigh();
}
int getLow() {
return low;
}
int getHigh() {
return high;
}
}##Why Refactor
Sometimes directly accessing a private field inside a class just isn’t flexible enough. You want to be able to initiate a field value when the first query is made or perform certain operations on new values of the field when they’re assigned, or maybe do all this in various ways in subclasses.
##Benefits
-
Indirect access to fields is when a field is acted on via access methods (getters and setters). This approach is much more flexible than direct access to fields.
-
First, you can perform complex operations when data in the field is set or received. Lazy initialization and validation of field values are easily implemented inside field getters and setters.
-
Second and more crucially, you can redefine getters and setters in subclasses.
-
-
You have the option of not implementing a setter for a field at all. The field value will be specified only in the constructor, thus making the field unchangeable throughout the entire object lifespan.
##How to Refactor
-
Create a getter (and optional setter) for the field. They should be either
protectedorpublic. -
Find all direct invocations of the field and replace them with getter and setter calls.