Contents

Section 18.1 Exception Handling

Section 18.2 Namespaces

Section 18.3 Multiple and Virtual Inheritance

Chapter Summary

Defined Terms

C++ is used on problems small enough to be solved by a single programmer after a few hours’ work and on problems requiring enormous systems consisting of tens of millions of lines of code developed and modified by hundreds of programmers over many years. The facilities that we covered in the earlier parts of this book are equally useful across this range of programming problems.

The language includes some features that are most useful on systems that are more complicated than those that a small team can manage. These features—exception handling, namespaces, and multiple inheritance—are the topic of this chapter.

Large-scale programming places greater demands on programming languages than do the needs of systems that can be developed by small teams of programmers. Among the needs that distinguish large-scale applications are

• The ability to handle errors across independently developed subsystems

• The ability to use libraries developed more or less independently

• The ability to model more complicated application concepts

This chapter looks at three features in C++ that are aimed at these needs: exception handling, namespaces, and multiple inheritance.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset