Tagged Questions
31
votes
9answers
2k views
What should be allowed inside getters and setters?
I got into an interesting internet argument about getter and setter methods and encapsulation. Someone said that all they should do is an assignment (setters) or a variable access (getters) to keep ...
9
votes
7answers
1k views
Is it bad code smell if private method calls public one?
Is it bad code smell to call public method in private method of same object instance?