I saw a code where getters and setters methods are declared private. I am trying to figure out the logic behind it, and I am really having hard time to understand why would you declare them as private? That's exactly opposite of what we are trying to achieve through getters and setters.
|
feedback
|
|
I can think of several reasons:
If a different programmer sees your code and wants access to a variable, but there are no setters and getters, he might think you just forgot about them, and add them themselves. However, if you declare them as
Say you don't want
Again, you don't want | |||
|
feedback
|
|
Sorry to just refer you but the only reason I can think of is self encapsulation and here is an explanation of it including motivation: http://sourcemaking.com/refactoring/self-encapsulate-field | |||
|
feedback
|
Actually, it is not. The reason for declaring getters and setters is to hide the fields. Declaring the getters / setters private doesn't automatically make the fields public again. The reason for making the getters and setters private is to make the corresponding part of the object's the state private. That's largely independent of the decision to use getters and setters or not. While the case for using getters and setters is not as strong for private state, doing this still has benefits. For instance:
| ||||
|
feedback
|