What are the disadvantages of using inheritance as a way of reusing code?
feedback
|
|
Using inheritance to achieve code reuse suffers from the following problems:
Preferring composition over inheritance to reuse code avoids all these issues. | |||
|
feedback
|
|
IIRC, the Liskov Substitution Principle 1) postulates that one should be able to substitute a class by any of its derived classes; that is, derived classes should not behave radically different than, or violate the contract set up by their base classes. Obviously then, this principle puts an intentional limit on how a (base) class can be "re-used" by another class (which is derived from it). Other means of using a class, such as aggregation or composition, aren't thus limited by the principle. 1) See e.g. The Liskov Substitution Principle (links to a PDF document). | |||
|
feedback
|
|
Using inheritance means that when you call a method (or virtual method in C++) in the same class, it isn't immediately clear that you might actually be calling a subclass' method. A code smell that can result is a call stack that goes up and down the class hierarchy, which effectively means that your superclass and subclass are in a circular dependency. Using composition and interfaces makes it clear that there are multiple possible implementations, and also makes it obvious when there is a circular dependency (which should generally be removed). (Composition makes circular dependencies obvious for a couple of reasons (assuming you use pass dependencies of a class in via the constructor). If A and B depend on each other, then either A constructs B and passes | ||||
|
feedback
|
|
It requires inheritance (to be reflective about it), which is only one of many possible structures for code. That's why we have procedural programming, functional programming, object-oriented programming, aspect-oriented programming, declarative programming, etc. See programming paradigms. | |||
|
feedback
|
|
If you use inheritance, you get tied into a mutable-state object-oriented paradigm. If you try to use immutable objects instead, you end up writing [pseudocode]
and there isn't code reuse. Thus, you use mutable objects, and madness ensues :). | |||
|
feedback
|