When designing a new system or getting your head around someone else's code, what are some tell tale signs that something has gone wrong in the design phase? Are there clues to look for on class diagrams and inheritance hierarchies or even in the code itself that just scream for a design overhaul, particularly early in a project?
|
15
|
|
|
|
|
|
The things that mostly stick out for me are "code smells". Mostly I'm sensitive to things that go against "good practice". Things like ... ... Methods that do things other than what you'd think from the name (eg: FileExists() that silently deletes zero byte files) ... A few extremely long methods (sign of an object wrapper around a procedure) ... Repeated use of switch/case statements on the same enumerated member (sign of sub-classes needing extraction) ... Lots of member variables that are used for processing, not to capture state (might indicate need to extract a method object) ... A class that has lots of responsibilities (violation of Single Repsonsibility principle) ... Long chains of member access (this.that is fine, this.that.theOther is fine, but my.very.long.chain.of.member.accesses.for.a.result is brittle) ... Poor naming of classes ... Use of too many design patterns in a small space ... Working too hard (rewriting functions already present in the framework, or elsewhere in the same project) ... Poor spelling (anywhere) and grammar (in comments), or comments that are simply misleading |
|||
|
|
|
I'd say the number one rule of poor OO design (and yes I've been guilty of it too many times!) is:
Followed by:
|
||
|
|
|
Check this out. Its awesome. Bad Smells: http://c2.com/xp/CodeSmell.html Its not specific to object oriented programming, but it covers a lot of bits. Cheers. |
|||
|
|
Impossible to unit test properly. |
||||
|
|
|
Software design anti-patterns
Object-oriented design anti-patterns
|
||
|
|
|
|
This question makes the assumption that object-oriented means good design. There are cases where another approach is much more appropriate. |
|||
|
|
|
One thing I hate to see is a base class down-casting itself to a derived class. When you see this, you know you have problems. Other examples might be:
|
||||||
|
|
|
One smell is objects having hard dependencies/references to other objects that aren't a part of their natural object hierarchy or domain related composition. Example: Say you have a city simulation. If the a Person object has a NearestPostOffice property you are probably in trouble. |
|||
|
|
|
|
Here's a few:
|
||
|
|
|
In my view, all OOP code degenerates to procedural code over a sufficiently long time span. Granted, if you read my most recent question, you might understand why I am a little jaded. The key problem with OOP is that it doesn't make it obvious that your object construction graph should be independent of your call graph. Once you fix that problem, OOP actually starts to make sense. The problem is that very few teams are aware of this design pattern. |
||
|
|
|
|
Within a long method, sections surrounded with #region / #endregion - in almost every case I've seen, that code could easily be extracted into a new method OR needed to be refactored in some way. Overly-complicated inheritance trees, where the sub-classes do very different things and are only tangentially related to one another. Violation of DRY - sub-classes that each override a base method in almost exactly the same way, with only a minor variation. An example: I recently worked on some code where the subclasses each overrode a base method and where the only difference was a type test ("x is ThisType" vs "x is ThatType"). I implemented a method in the base that took a generic type T, that it then used in the test. Each child could then call the base implementation, passing the type it wanted to test against. This trimmed about 30 lines of code from each of 8 different child classes. |
||
|
|
|
|
Having all you objects inherit some base utility class just so you can call your utility methods without having to type so much code. |
||
|
|
|
|
Find a programmer who is experienced with the code base. Ask them to explain how something works. If they say "this function calls that function", their code is procedural. If they say "this class interacts with that class", their code is OO. |
||||
|
