Difference between Inheritance and Composition

前端 未结 17 2306
忘了有多久
忘了有多久 2020-11-22 02:35

Are Composition and Inheritance the same? If I want to implement the composition pattern, how can I do that in Java?

17条回答
  •  没有蜡笔的小新
    2020-11-22 03:26

    as another example, consider a car class, this would be a good use of composition, a car would "have" an engine, a transmission, tires, seats, etc. It would not extend any of those classes.

提交回复
热议问题