Difference between Inheritance and Composition

前端 未结 17 1931
忘了有多久
忘了有多久 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:11

    No , Both are different . Composition follow "HAS-A" relationship and inheritance follow "IS-A" relationship . Best Example for composition was Strategic pattern .

提交回复
热议问题