It is always recommended to use getter/setter for accessing private variables. Why would it not be a better idea to declare them as public and access them. Anyway we are accessing it using getter and setter?
|
@mre answer is excellent and your question is fundamental. To summarize : you put the fields of an object private to gain control over the way it will be used by other objects. Your object uses setter to:
it will use getter to
welcome in the wonderfull world of OO programming and the magics of structured programming. Stéphane |
|||||||
|
|
Encapsulation.
See also: |
|||||
|
|
All of the answers above are excellent, but let me add one more point. You do not want all of your private variables to have public getters and setters. Your getters and setters refer to externally visible state. In some cases, what looks like a single object as published in your public methods corresponds to more than one internal private variable for the implementation. In a complex object, many of your private variables won't map to something externally visible. Some people automatically write setters and getters for them anyway, but this is a bad idea because it exposes your implementation details. |
|||
|
|
|
I was always told that one of the main reasons is to try and plan for future changes. It may start out as just
but may end up as
} and that would save you from having to make massive amounts of changes to where you accessed the public property instead of using the getter/setter. |
|||
|
|
|
Usually a setter allows you to keep restrictions on the type of values being assigned to a private member. So perhaps negative values are not allowed, etc. A getter, since you've imposed access to the member by making it private for the reasons above, allows consumers access to the value of that member. |
|||||
|
|
All of the other answers are great and very true. Here is yet another reason why I have found it helpful. Using the getters and setters on an object is the largest part of following the JavaBean convention. Although following it to the letter is often difficult and overkill, at the very least many third party frameworks/libraries/expression languages depend on the getters and setters convention for accessing the fields of an object. If you follow it up front, then you can already use the objects with these other very useful libraries without having to update your objects. Examples I have used include:
|
|||
|
|
|
I use regularly getter and setter but apparently we are not doing it right. For example: (obtained from http://java.dzone.com/articles/java-properties-without ) with getter & setter (way long)
with public: (only 13 lines, counting blank lines).
calling with getter & setter (not a bit clear, however C# makes it cleaner).
calling public (direct and clean).
One is verbose and it add more code (and code cost in working hour and in process time), while the other is direct. In some cases, it is mandatory to use setter and getter but if not, then i think that it is a bit overkill to use it as default. |
|||
|
|
