9.3. Composition

Every class definition also defines a new type that becomes available for use anywhere a built in type could be used.

Composition is also fundamental to every object oriented language. It is natural to think about things in terms of parts and components. It would be difficult to break down complex problems into solvable chunks without composition.

The simplest way to incorporate a class is to just use the type directly in another class. A class can be made up of any number and type of other objects, in any combination needed to implement the capabilities desired in the new class. Because this results in composing a new class from existing classes, this concept is called composition. Composition is often described as a “has-a” relationship, as in “a car has an engine.”

Composition models the relation where two object lifetimes are linked:

struct Engine { . . . };
struct Tire   { . . . };
struct Stereo { . . . };

struct Car {
  Engine e;
  Stereo s;
  std::array<Tire, 4> tires;
};

int main() {
  {  // create a temporary scope

    // create a car (and all its components)
    Car c;
  } // when the Car goes out of scope,
    // both the car and its components are destroyed
}

Composition provides a great deal of flexibility. Member objects are usually private, making them inaccessible to the users of a type. This enables changing those members without disturbing existing client code. You can also change the member objects at runtime, to dynamically change the behavior of your program. Inheritance, which is described next, does not have this flexibility since the compiler must place compile-time restrictions on classes created with inheritance.

Guideline

Prefer composition over inheritance.

Because inheritance is so important in object-oriented programming it is often highly emphasized, and a new programmer might think that inheritance should be used everywhere. This can result in awkward and overly-complicated designs. Instead, prefer composition when creating new classes, since it is simpler and more flexible. If you take this approach, your designs will stay cleaner.


More to Explore

  • Effective C++ Item #40: Model HAS-A using composition Note that Meyers uses the term layering as a synonym for composition.

You have attempted of activities on this page