Thursday 11 May 2017

What is Composition in JAVA !!!

Composition is restricted form of agreegation. For example, a class car can't exist without engine.


class Car
{
  private Engine engine;
  Car(Engine en)
  {
    engine en;
  }

}

No comments:

Post a Comment