vote up 3 vote down star
1

What is the difference between aggregation, composition and dependency?

flag

48% accept rate
5  
smells like homework. could you show us what you think they are? – Matthew Jones Oct 29 at 14:52
2  
@Matthew: who cares if it's a homework? It's a reasonable question. – cletus Oct 30 at 7:35

4 Answers

vote up 0 vote down

Aggregation and composition are terms that most people in the OO world have acquired via UML. And UML does a very poor job at defining these terms, as has been demonstrated by, for example, Henderson-Sellers and Barbier ("What is This Thing Called Aggregation?", "Formalization of the Whole-Part Relationship in the Unified Modeling Language"). I don't think that a coherent definition of aggregation and composition can be given if you are interested in being UML-compliant. I suggest you look at the cited works.

Regarding dependency, that's a highly abstract relationship between types (not objects) that can mean almost anything.

link|flag
vote up 0 vote down

An object associated with a composition relationship will not exist outside the containing object. Examples are an Appointment and the owner (a Person) or a Calendar; a TestResult and a Patient.

On the other hand, an object that is aggregated by a containing object can exist outside that containing object. Examples are a Door and a House; an Employee and a Department.

A dependency relates to collaboration or delegation, where an object requests services from another object and is therefor dependent on that object. As the client of the service, you want the service interface to remain constant, even if future services are offered.

link|flag
vote up 3 vote down

Aggregation implies a relationship where the child can exist independently of the parent. Example: Class (parent) and Student (child). Delete the Class and the Students still exist.

Composition implies a relationship where the child cannot exist independent of the parent. Example: House (parent) and Room (child). Rooms don't exist separate to a child.

The above two are forms of containment (hence the parent-child relationships).

Dependency is a weaker form of relationship and in code terms indicates that a class uses another by parameter or return type.

Dependency is a form of association.

link|flag
Mention the fact that aggregation and composition are specialization of the containment relationship form and it would be perfect. – alphazero Oct 29 at 15:08
vote up 3 vote down

aggregation and composition are almost completely identical except that composition is used when the life of the child is completely controlled by the parent.

Aggregation

Car->Tires

The tires can be taken off of the car object and installed on a different one. Also, if the car gets totaled, the tires do not necessarily have to be destroyed.

Composition

Body->Blood Cell

When the Body object is destroyed the BloodCells get destroyed with it.

Dependency

A relationship between two objects where changing one may affect the other.

link|flag
Funny, I just read a tutorial where the car-tires example is used to illustrate composition... – mouviciel Nov 4 at 16:18
interesting, I guess it depends on how you look at it. I don't see how destroying the car object also mandates that the tires be destroyed as well. Also, you can take the tires off of a car and put them on a different car. That's the problem with analogies though I suppose. – Robert Greiner Nov 4 at 16:39
Yes, indeed I understood aggregation and composition not with such analogies but with actual code. – mouviciel Nov 4 at 21:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.