What is composition as it relates to object oriented design?

前端 未结 6 2205
再見小時候
再見小時候 2020-11-28 03:40

I hear (and read on this site) a lot about \"favour composition over inheritance\".

But what is Compositon? I understand inheritance from the point of Person : Mamma

6条回答
  •  执笔经年
    2020-11-28 04:01

    Composition is simply the parts that make up the whole. A car has wheels, an engine, and seats. Inheritance is a "is a " relationship. Composition is a "has a" relationship.

提交回复
热议问题