This book provides a complete reference for the C++ programming language. It consists of the C++ reference manual, approved as the base document for ANSI standardization of the language, plus annotations and commentary. The annotations and commentary discuss what is not included in the language, why certain features are defined as they are, and how one might implement particular features. The commentaries also help the reader to understand the relationships between parts of the language. Comparisons with C and examples explain the more subtle points of the language. Sixteen chapters cover the latest version of C++ including multiple inheritance, abstract classes, templates, exception handling, and more. A final chapter describes resolutions by the ANSI/ISO committee including new features such as run-time type information and namespaces. Appendices summarize the grammar and evolution of the language, and explain in detail the differences between C and C++. The Annotated C++ Reference Manual will appeal to language implementors and expert C++ programmers. 0201514591B04062001
Good for understanding the implementation of the language. I did not enjoy reading it. Read it just because I wanted to force myself to learn as much as c++ as I could on the simplest and most foundational levels.
The reference manual is clear and logical, as befits an ANSI standard Base Document (which this is). But the annotations, which were pruned from the standard, are worth at least half the cost of the book. Where the reference and standard tell you what to do, the annotations tell you why, and what not to do, and how to dig yourself out when you do do.
ehhh, kind of out of date and less detailed than i'd hoped for. if you've memorized the various fractured c++ FAQs, along with the Meyers Effective C++ titles, you've actually seen everything important in here referenced and expanded upon elsewhere. --- doing a lot more c++ these days, and trying to build up a mastery of it to rival my mastery of c...if that is indeed possible.