CSC/ECE 517 Summer 2008/wiki2 8 jb: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 9: Line 9:


===Delegation===
===Delegation===
[http://en.wikipedia.org/wiki/Delegation_(programming) Delegation], also known as [http://en.wikipedia.org/wiki/Object_composition#Aggregation aggregation], refers to the ability model the situation where classes contain instances of, or references to, other classes, and use these classes to <i>delegate</i> responsibilities to.
[http://en.wikipedia.org/wiki/Delegation_(programming) Delegation], sometimes referred to as [http://en.wikipedia.org/wiki/Object_composition#Aggregation], is the concept that one class may contain an instance of, or a reference to, another class, and <i>delegate</i> some responsibility to that class.
 
Aggregation can take on another connotation, specific to data modeling, closely related to [http://en.wikipedia.org/wiki/Object_composition composition]. Composition refers to one class owning, and therefore being responsible for the memory allocation and deallocation, another class. In this context, aggregation refers to a class simply having a reference to another class, but not taking ownership.
 
For the purposes of this wiki, we will use the term delegation to mean that one class <i>delegates</i> responsibility to another class that it contains. In this context, the issue of ownership is irrelevant.


==Inheritance vs. Delegation==
==Inheritance vs. Delegation==

Revision as of 19:13, 20 June 2008

This wiki will explore the age old debate on inheritance vs. delegation, showing the strengths and weakness of each approach, and where each approach is preferred.

Background

An in-depth description Inheritance and Delegation is out of the scope of this wiki, but a brief description of each subject will be given to get us started.

Inheritance

Inheritance is one of the fundamental tenets of object oriented programming. Inheritance refers to the ability to model hierarchies classes that are related to each other through the is-a relationship.

Delegation

Delegation, sometimes referred to as [1], is the concept that one class may contain an instance of, or a reference to, another class, and delegate some responsibility to that class.

Aggregation can take on another connotation, specific to data modeling, closely related to composition. Composition refers to one class owning, and therefore being responsible for the memory allocation and deallocation, another class. In this context, aggregation refers to a class simply having a reference to another class, but not taking ownership.

For the purposes of this wiki, we will use the term delegation to mean that one class delegates responsibility to another class that it contains. In this context, the issue of ownership is irrelevant.

Inheritance vs. Delegation

Links