Replace Inheritance with Delegation
From CSSEMediaWiki
(Difference between revisions)
m |
m (Reverted edits by Ebybymic (Talk); changed back to last version by Joey Scarr) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 9: | Line 9: | ||
*[[Delegation]] | *[[Delegation]] | ||
*[[Don't burn your base class]] | *[[Don't burn your base class]] | ||
+ | *[[Avoid inheritance for implementation]] |
Latest revision as of 03:21, 25 November 2010
Straight from Martin Fowler 1999:
"A subclass uses only part of a superclasses interface or does not want to inherit data.
Create a field for the superclass, adjust methods to delegate to the super class, and remove the subclassing."