Summary

CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

Bruce Eckel’s Thinking in Java Contents | Prev | Next

Both
inheritance and composition allow you to create a new type from existing types.
Typically, however, you use composition to reuse existing types as part of the
underlying implementation of the new type and inheritance when you want to
reuse the interface. Since the derived class has the base-class interface, it
can be
upcast
to the base, which is critical for polymorphism, as you’ll see in the
next chapter.

Despite
the strong emphasis on inheritance in object-oriented programming, when you
start a design you should generally prefer composition during the first cut and
use inheritance only when it is clearly necessary. (As you’ll see in the
next chapter.) Composition tends to be more flexible. In addition, by using the
added artifice of inheritance with your member type, you can change the exact
type, and thus the behavior, of those member objects at run-time. Therefore,
you can change the behavior of the composed object at run-time.

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read