Are Composition and Inheritance the same? If I want to implement the composition pattern, how can I do that in Java?
No , Both are different . Composition follow "HAS-A" relationship and inheritance follow "IS-A" relationship . Best Example for composition was Strategic pattern .