I've heard people saying that good design involves using inheritance instead of littering your code with if block. In what situation should we use inheritance, and when condition block is just fine?
|
|
|
|
|
|
|
Generally, it isn't good object-oriented programming practice to have code like the following:
The above can utilize polymorphism to call some method that will perform the action that is abstracted away in related classes with a common ancestor:
However, this practice definitely should not apply for all conditionals, however, when it comes to long |
|||
|
|
|
|
One refactoring like this is called Replace Conditional With Polymorphism. We actually favor composition over inheritance, but ... it's really too broad of a topic to discuss here, however the book is worth a read and can get you started. |
||
|
|
|
|
If blocks (or switch blocks) that are used to decide what logic to do based on the type of an argument should be replaced with polymorphism. If new features in a program will cause you to make additional case or else blocks use polymorphism. If statements should be used for natural ordering type comparisons ( <, >, ==, etc.) or to check if something is null. |
||
|
|
|
|
Here is something I ran into the other day PHP is my language of choice
or... it could of been extended
Rough example, but I hope you catch my drift.... |
|||
|
|
|
|
In my opinion the two are not mutually exclusive. I typically use inheritance when I have 2 or more classes that have common functionality. |
||
|
|
|
|
This is one of those questions that, while others can offer guidelines, the final answer for any particular situation is always, "it depends on the situation." The best way to be able to develop the ability to answer it for any particular situation is to gain experience: i.e., experiment. Try both ways, where you can do so reasonably. (Obviously, you don't want to be flipping back and forth in situations where you have to change a thousand lines of code to do so.) Which worked better? Which felt better to you? Why? Do this enough, and you'll soon reach the level of expertise where you no longer need the general advice, and people start asking you how you know what to do in any particular situation. (You won't be able to explain it; that's part of the nature of expertise. See The Dreyfus Model of Skill Acquisition for more details. |
||
|
|
|
|
Inheritance is better when some condition is checking something intrinsic to your object that you check constantly (like a state or type). In this example, it's an operator for a mathematical expression tree. An operator, like addition, has an expression before and after the plus sign (infix notation) so I call them left and right because it is represented as a tree. There are also unary operators like a hyphen that negates a value, but it only has one child expression. Using inheritance means the type (simplified to just unary vs. binary) is factored into the inheritance:
As opposed to:
Here your Unary operator doesn't have a Left and a Right expression, just an expression. This means you have to introduce convention that Left is used and Right is null. ToString would have to check OperatorType; so would any other method that needs to act on what operator it is. The latter approach is most often seen in XML DOM implementations where XmlNode is pretty much everything any XML node could contain...ever. It makes for some very confusing situations:
|
|||
|
|
