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. |
|