Wednesday, August 22, 2007
Comparing Composition and Inheritance
The following quotes best describe when to use each:
Use composition to extend responsibilities by delegating work to other more
appropriate objects.
Use inheritance to extend attributes and methods.
Use composition to extend responsibilities by delegating work to other more
appropriate objects.
Use inheritance to extend attributes and methods.