Are Composition and Inheritance the same? If I want to implement the composition pattern, how can I do that in Java?
|
|
They are absolutely different. Inheritance is an "is-a" relationship. Composition is a "has-a". You do composition by having an instance of another class Unfortunately it's too late to rectify this design mistake, since changing the inheritance hierarchy now would break compatibility with existing code. Had I highly recommend Josh Bloch's book Effective Java 2nd Edition
Good object-oriented design is not about liberally extending existing classes. Your first instinct should be to compose instead. See also: |
||||
|
|
|
Composition means
In programming this is represented as:
|
||||
|
|
|
Composition is just as it sounds - you create an object by plugging in parts. This is accomplished with Interfaces. For example, using the Car example above,
So with a few standard theoretical components you can build up your object. It's then your job to fill in how a House protects it's occupants, and how a Car protects it's occupants. Inheritance is like the other way around. You start off with a complete (or semi-complete) object and you replace or Override the various bits you want to change. For example, MotorVehicle may come with a Fuelable method and Drive method. You may leave the Fuel method as it is because it's the same to fill up a motorbike and a car, but you may override the Drive method because the Motorbike drives very differently to a Car. With inheritance, some classes are completely implemented already, and others have methods that you are forced to override. With Composition nothing's given to you. (but you can Implement the interfaces by calling methods in other classes if you happen to have something laying around). Compisition is seen as more flexible, because if you have a method such as iUsesFuel, you can have a method somewhere else (another class, another project) that just worries about dealing with objects that can be fueled, regardless of whether it's a car, boat, stove, barbecue, etc. Interfaces mandate that classes that say they implement that interface actually have the methods that that interface is all about. For example,
then you can have a method somewhere else
Strange example, but it's shows that this method doesn't care what it's filling up, because the object implements iUsesFuel, it can be filled. End of story. If you used Inheritance instead, you would need different FillHerUp methods to deal with MotorVehicles and Barbecues, unless you had some rather weird "ObjectThatUsesFuel" base object from which to inherit. |
|||
|
|
|
Inheritance brings out IS-A relation. Composition brings out HAS-A relation.
Statergy pattern explains that Composition should be used in cases where there are families of algorithms defining a particular behaviour.
Thus we can have multiple classes which implement flying eg:
Had it been for inheritance we would have two different classes of birds which implement the fly function over and over again.thus inheritance and composition are completely different. |
|||
|
|
|
The answer given by @Michael Rodrigues is not correct (I apologize; I'm not able to comment directly), and could lead to some confusion. Interface implementation is a form of inheritance... when you implement an interface, you're not only inheriting all the constants, you are committing your object to be of the type specified by the interface; it's still an "is-a" relationship. If a car implements Fillable, the car "is-a" Fillable, and can be used in your code wherever you would use a Fillable. Composition is fundamentally different from inheritance. When you use composition, you are (as the other answers note) making a "has-a" relationship between two objects, as opposed to the "is-a" relationship that you make when you use inheritance. So, from the car examples in the other questions, if I wanted to say that a car "has-a" gas tank, I would use composition, as follows:
Hopefully that clears up any misunderstanding. |
|||
|
|
|
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. |
|||
|
|
|
Inheritance in Java is mainly between two classes where one extends another thus bringing about the is-a relationship. Composition of the other end is having an instance of another class in your class thus yielding the Has-A relationship. Composition in java is is useful since it technically facilitates multiple inheritance. |
|||
|
|