What is the difference between association, aggregation and composition?

后端 未结 19 2173
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 01:44

What is the difference between association, aggregation, and composition? Please explain in terms of implementation.

19条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 02:13

    Composition: This is where once you destroy an object (School), another object (Classrooms) which is bound to it would get destroyed too. Both of them can't exist independently.

    Aggregation: This is sorta the exact opposite of the above (Composition) association where once you kill an object (Company), the other object (Employees) which is bound to it can exist on its own.

    Association.
    Composition and Aggregation are the two forms of association.

提交回复
热议问题