InterviewSolution
Saved Bookmarks
| 1. |
What Is Aggregation? |
|
Answer» It is a SPECIAL TYPE of composition. If you EXPOSE all the METHODS of a composite class and route the METHOD call to the composite method through its reference, then it is called aggregation. It is a special type of composition. If you expose all the methods of a composite class and route the method call to the composite method through its reference, then it is called aggregation. |
|