CSC/ECE 517 Fall 2007/wiki2 10 ab
Inheritance vs Delegation : Inheritance vs. delegation. Follow the debate on inheritance vs. delegation. Construct (or, better, cite) examples that show cases where inheritance is better, and cases where delegation is better. Attempt to characterize the situations in which you should employ one or the other.
What is Inheritance
Inheritance in the concept of Object Oriented Programming is the process by which one object can inherit or acquire the properties of other objects. With the use of inheritance each object can only define the properties which are unique to itself and derive qualities or common attributes from other objects. To cite this as an example, consider this page "Real life Inheritance Examples"
What is Delegation
Delegation is