Aggregation
In this lesson, you'll get familiar with a new way of linking different classes.
We'll cover the following...
Aggregation is a specialized form of association. It follows the Has-A model. In aggregation, a class uses the objects of other classes. Here, we will refer to the class, using the objects of other classes, as the container class, and the classes whose objects are being used as the contained classes.
The ...