CSC/ECE 517 Fall 2007/wiki2 9 cv

From Expertiza_Wiki
Revision as of 02:33, 23 October 2007 by Cwlacewe (talk | contribs)
Jump to navigation Jump to search

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.

Inheritance vs. Delegation

Inheritance is a way to form new classes in object oriented programming using already defined classes. Inheritance is used to help reuse code that already exists with little or no modifications and this is one of the advantages of using inheritance since it helps reduce the complexity of a program.

Delegation is when one object relies on another object in order to provide a specified set of functionalities and this is sometimes referred to as aggregation, consultation, or forwarding.


References

Inheritance vs. Delegation