I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or could the real answer hide in YAGNI and only refactor to a single responsibility the first time your class changes?
|
10
|
|
|
|
|
|
the methods in your class should be cohesive....they should work together and make use of the same data structures internally. If you find you have too many methods that don't seem entirely well related, or seem to operate on different things, then quite likely you dont have a good single responsibility. Often its hard to initially find responsibilities, sometimes you need to use the class in several different contexts and then refactor the class into two classes as you start to see the distinctions. Sometimes you find that its because you are mixing an abstract and concrete concept together, they tend to be harder to see, again, use in different contexts will help clarify. |
||
|
|
|
|
The obvious sign is when your class ends up looking like a Big Ball of Mud, which is really the opposite of SRP (Single responsability principle), Basically, all the object's services should be focused on carry in out a single responsibility, meaning every time your class change and add a service which does not respect that, you know you "deviating" from the "right" path ;) The cause is usually due to some quick fixes hastily added to the class to repair some defects. So the reason why you are changing the class is usually the best criteria to detect if you are about to break the SRP. |
||
|
|
|
|
The Single Responsibility PrincipleThere are many obvious cases, e.g. Among the more subtle cases, the tension between data access objects (DAOs) and data transfer objects (DTOs) is very common. DAOs talk to the database, DTOs are serializable for transfer between processes and machines. Usually DAOs need a reference to your database framework, therefore they are unusable on your rich clients which neither have the database drivers installed nor have the necessary privileges to access the DB. Code Smells
|
|||
|
|
|
|
Well this principle is to be used with some salt.. to avoid class explosion. A single responsibility does not translate to single method classes. It means a single reason for existence... a service that the object provides for its clients.
|
||
|
|
|
|
A simple and practical method to check single responsibility (not only classes but also method of classes) is the name choice. When you design a class, if you easily find a name for the class that specify exactly what it defines, you're in the right way. A difficulty to choose a name is near always a symptom of bad design. |
||
|
|
|
|
Perhaps a little more technical than other smells:
I also find that refactoring to single responsibility is hard. By the time you finally get around to it, the different responsibilities of the class will have become entwined in the client code making it hard to factor one thing out without breaking the other thing. I'd rather err on the side of "too little" than "too much" myself. |
||
|
|
|
|
write a brief but accurate description of what the class does if the description contains the word "and" then it needs to be split |
||
|
|
|
|
If you're finding troubles extending the functionality of the class without being afraid that you might end up breaking something else, or you cannot use class without modifying tons of its options which modify its behavior smells like your class doing too much. Once I was working with the legacy class which had method "ZipAndClean", which was obviously zipping and cleaning specified folder... |
||
|
|
|
|
If you end up with If you notice that you have a class that just delegates calls to a lot of other classes, you might be stuck in proxy class hell. This is especially true if you end up instantiating the proxy class everywhere when you could just use the specific classes directly. I have seen a lot of this. Think |
||
|
|
|
|
Here are some things that help me figure out if my class is violating SRP:
|
||
|
|
