I am making a new class in PHP. I don't anticipate this class ever being extended. Should I bother with making class members private and implementing getter and setter functions?

Part of me thinks that this is just a big waste of time and only serves to bulk up my code.

The class is for a resume. I am writing it in code to demonstrate my coding style. The question is will an employer want to see getters and setters, or will that just clutter things up?

link|improve this question

1  
Can you give some information about your class? – RDL Dec 10 '10 at 20:49
It is for a resume. I am writing it in code. The question is will an employer want to see getters and setters, or will that just clutter things up? – james Dec 10 '10 at 20:58
1  
that makes a big difference in how to answer your question; you might want to edit your question to add that information. – Paul Sonier Dec 10 '10 at 20:59
@mcWafflestix - thanks I just did! – james Dec 10 '10 at 21:01
feedback

9 Answers

up vote 2 down vote accepted

I wouldn't bother if I were you. You're right, that decoration would just clutter up your class.

link|improve this answer
feedback

Check out the __get and __set magic methods, it'll keep your code clean and you won't have to feel lazy for not setting variable scopel.

public function __get($name)
{
  return $this->$name;
}

public function __set($name, $value)
{
  $this->$name = $value;
}

Obviously you'd have more detail, but that will handle your accessors.

link|improve this answer
1  
Magic methods are slow. These are not replacements for proper getters and setters. – Gordon Dec 11 '10 at 0:29
They make code easier to read, and do not significantly reduce throughput. – PMV Dec 12 '10 at 22:56
feedback

I don't want once again to repeat the argument that even that you don't expect inheritance now, you may still need it in the future, but they are still more reasons to use getters and setters:

  • Getters and setters will let you easily implement validation of your properties
  • Your code will follow good coding guidelines and as such it will be easier to be read by others. If I ran into a code file that didn't use getters and setters, I would be very skeptical about it and would have to read it carefully many times.
  • Also this is not only a per class decision, but a decision for your whole project. Do you want to have getters and setters for some classes you need them and not for some others? I believe that consistency is important.
  • There are tools that can autogenerate writing the getters and setters for you. Remember that you write the code only once, but you read it many times,
link|improve this answer
To add, one should even have getters and setters even for private properties. Your internal code should have only one point to read & write from & to an internal property. – Rafa Feb 8 '11 at 12:32
feedback

You may never know that you will not need to extend the class in the future. What will the class be doing? How complex it is?

Encapsulation is part of good OO design. But good OO design is not the goal of programming. The goal is to have things working and be able to modify them easily when needed.

link|improve this answer
feedback

You can just override __get & __set as far as I understand. http://php.net/manual/en/language.oop5.overloading.php

link|improve this answer
Magic methods are slow. These are not replacements for proper getters and setters. – Gordon Dec 11 '10 at 0:31
feedback

If it's for a resume, it's likely that they care just as much (or more) about your logic as they do the little details like getters/setters.

If it was me, I'd make them public without getters/setters, but include a comment above them, saying something along the lines of "consider making these private and using getters/setters depending on the scope of the application and preferred code style of the team"

That way:

  1. Your resume code isn't cluttered

  2. They understand that your not just lazy and making everything public for no reason

  3. It shows that instead of blindly following a particular style, you'd consider the particular application in making a decision.
link|improve this answer
feedback

I like to make the properties in my class protected or private and then use getters and setters. I then use code in the setters to make sure that the property values are within accepted ranges. I like this approach as I find it makes debugging easier as I can always be sure that an accepted value is being set, or an exception is being thrown. It also gives me more confidence that when I pass objects around the values held in the properties are not going to cause anything else to blow up.

link|improve this answer
feedback

Do you want to do someting special on set or get (or just one of them private)?

If not, then don't waste your time on these.

You don't gain anything on doing this if you don't use them in a "special way" and maybe it's even slowing everything down

link|improve this answer
1  
You may gain by that if you need to do something special on the values in the future. – Juraj Blaho Dec 10 '10 at 20:53
feedback

If you don't plan to have specific behavior when setting or accesssing those property, it doesn't mater much.

If you are required to have specific behavior when accessing or modifying those property later you can always overload the __set and __get method.

See : http://php.net/manual/en/language.oop5.overloading.php

link|improve this answer
Magic methods are slow. These are not replacements for proper getters and setters. – Gordon Dec 11 '10 at 0:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.