Composition has-a Relationship

Composition has-a Relationship One of the goals of OOP languages is reusability. Java gives good importance for reusability. A method in Java can be called in two ways. With the objects of the same class (through composition) With the objects of other classes (through inheritance) Here we discuss the composition. class Bird { public void …

Composition has-a Relationship Read More »