80 likes | 110 Views
This Give you a Short and Easy Concept of Composition ..What is Composition ? how it is used? what are its Examples..<br>Hope you ppl understand.. If someone has Any Question Regarding this May ask through email or comment..<br>Thank you!
E N D
Composition in OOP Presented by Huba Akhtar
Lets Suppose: Let's say we must manage rooms in a hotel. We will have a class Hotel that has several objects Floor. And each floor is composed of several Rooms.Using "is composed" give us a hint on the relationship between Floor and Room.
Continue… If we happen to destroy the object Floor, what should happen to the Rooms?? If a Floor is destroy then all the Rooms inside should also be destroy. That is a composition
Example: For Example, you could have a class called Band. The data member of Band class could consist of objects from the Guitarist, Drummer, and Vocalist classes. These objects are data member of the Band class, but not the parent classes. They are related by composition, not by inheritance.