vote up 86 vote down star
148

After more than a few questions about deciding on C++ books I thought we could make a better community wiki version. Providing QUALITY books and an approximate skill level. Maybe we can add a short blurb/description about each book that you have personally read / benefited from. Feel free to debate quality, headings, etc.

Reference Style - All Levels

  1. The C++ Programming Language - Bjarne Stroustrup

  2. C++ Standard Library Tutorial and Reference - Nicolai Josuttis

Beginner

  1. C++ Primer - Stanley Lipman / Josée Lajoie / Barbara E. Moo

  2. Accelerated C++ - Andrew Koenig / Barbara Moo

  3. Effective C++ - Scott Meyers

  4. Effective STL - Scott Meyers

  5. Thinking in C++ - Bruce Eckel (2 volumes, 2nd is more about standard library, but still very good)

Intermediate

  1. More Effective C++ - Scott Meyers

  2. Exceptional C++ - Herb Sutter

  3. More Exceptional C++ - Herb Sutter

  4. C++ Coding Standards: 101 Rules, Guidelines, and Best Practices - Herb Sutter / Andrei Alexandrescu

  5. C++ Templates The Complete Guide - David Vandevoorde / Nicolai M. Josuttis

  6. Large Scale C++ Software Design - John Lakos

Above Intermediate

  1. Modern C++ Design - Andrei Alexandrescu

  2. C++ Template Metaprogramming - David Abrahams and Aleksey Gurtovoy

  3. Inside the C++ Object Model - Stanley Lippman


Classics / Older

Note: Some information contained within these books may not be up to date and no longer considered best practice.

  1. The Design and Evolution of C++ - Bjarne Stroustrup

  2. Ruminations on C++ Andrew Koenig / Barbara Moo

  3. Advanced C++ Programming Styles and Idioms - James Coplien

flag
For Stroustrup: there are several editions; the link you give is to the "best" one (the "special edition" which goes into a lot of depth about STL and generic programming) but maybe you should point this out explicitly. The other editions are less useful. – Jason S Dec 23 '08 at 13:42
I think you should add "Josée Lajoie" and "Barbara E. Moo" as authors next to C++ Primer. – Comptrol Jan 4 at 10:36
2  
No "C++ FAQ"?? I'd put that near the top of the list, certainly above Scott Meyers. D&E should also be essential reading. – Jimmy J Mar 19 at 20:04
C++ FAQ is certainly a great helper – Álvaro Jun 7 at 11:23

22 Answers

vote up 13 vote down

Large Scale C++ Design, by Lakos

I'd say intermediate level, in any case, read it before you start/join your very first large project (whichever level you're at)

link|flag
He was supposed to be bringing out an update version of this book in 2007. However it never arrived. He was at ACCU 2008 which I unfortunately missed. If he was I would of asked him what happened to the book. – graham.reeds Jan 4 at 12:14
I find the book too verbose and therefore difficult to maintain focus. I would better go for the notes at mpi-inf.mpg.de/~kettner/courses/… – Amit Kumar Apr 10 at 8:05
+1 for Lakos. Outstanding book. – Andrew May 1 at 12:34
vote up 9 vote down

About C++ Templates The Complete Guide

I can only say good things about it. Written by two top experts. And you really notice that. The examples are well written, explained and placed.

They start by teaching you the basics on a few pages. Then they talk about all the pitfalls and hidden danger there is in template programming and the cool stuff that can be done with them. At the end, they explain in detail the overload resolution and the one definition rule in Appendix A and B.

Strongly recommended :)

link|flag
Yes my favorite section of this book is the discussion on Policy Based design , which Alexandrescu uses heavily in Modern C++ Design. – grepsedawk Dec 23 '08 at 5:54
can u write abt Modern C++ Design – yesraaj Dec 23 '08 at 6:27
This was the book that opened my eyes and made me realise how much I hated C++ – Brent.Longborough Jan 4 at 11:54
1  
+1: this is probably the best book for understanding how to use templates. – D.Shawley Oct 11 at 14:13
vote up 5 vote down

I'd add C++ FAQs to the Beginner list. I find it highly readable, enjoyable, and a succinct summary of a lot of material in "The C++ Programming Language" and the "Effective C++" series of books.

link|flag
vote up 5 vote down

C++ Common Knowledge by Stephen Dewhurst belongs in the Intermediate section, but just barely. The coverage of templates gets into advanced material near the end.

link|flag
vote up 4 vote down

New book by Stroustrup Principles and Practice Using C++ should be a great beginner book.

link|flag
I will save judgment on this book until it is officially released :) – grepsedawk Dec 23 '08 at 6:24
Out, and I'm impressed with the parts I've read yet. – David Thornley Mar 19 at 20:13
vote up 4 vote down

I think Bruce Eckel's Thinking in C++ volumes really stirred me.

http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html

link|flag
1  
They are great as introductory books and for the discussions about OOP. But beware that they can't be used as a reference guide - they traded that off to be of the "tutorial" type (well, a great tutorial anyway). – Blaisorblade Jan 14 at 23:51
1  
Hands down the best C++ tutorials ... all other pale in comparison. – bias Mar 26 at 22:49
vote up 2 vote down

Even though you said C++, I would add K&R C (The C Programming Language, by Brian Kernighan and Dennis Ritchie). After all, good C code is (almost) valid C++ code as well, and knowing K&R/ANSI will provide a better understanding of C's roots. Plus, it's simply an excellent example of a clear and concise programming book.

link|flag
No. Although it's a great book C++ is definitely not C. – Jonas Aug 31 at 15:42
vote up 2 vote down

If what you're looking for is a fairly complete reference, I like C++ in a Nutshell. I have found it to be more complete and more to the point than "The C++ Programming Language" (which I guess is the point of the Nutshell series). However, it is definitely not for the beginner.

link|flag
vote up 1 vote down

Wrox Press Beginning C++: The Complete Language by Ivor Horton

link|flag
vote up 1 vote down

For the 'classics' section I'd like to recommend, John Lakos "Large Scale C++ Software Design". It's quite an old book but it occupies a niche that no other C++ book I know of covers. Probably Intermediate, and if you're working on a big codebase, you'll have to have this book.

I'd also like to recommend Stephen C. Dewhurst's "C++ Gotchas" for the Intermediate developer. It falls into the same category as Herb Sutter's Exceptional C++ books, only with slightly more emphasis on how to avoid shooting yourself in the foot.

link|flag
vote up 1 vote down

In spite of being stated beforehand, It is fertile to reiterate Stephen Dewhurst's 2 books:

C++ Gotchas: Avoiding Common Problems in Coding and Design

C++ Common Knowledge: Essential Intermediate Programming

and Danny Kalev's constantly updated e-book:

C++ Reference Guide

Lastly, Don't you think you should add in that list Herb Sutter's other book as well and the best Boost introductory book that exists?

link|flag
vote up 1 vote down

I got C++ Cookbook as a birthday present and like it a good deal. It's a very practical book, with code examples ("recipes") to solve specific problems. Each recipe is explained in detail by breaking the code down and showing why things have been done a certain way. Many recipes show you how to do things using STL and/or Boost, and sometimes how to roll your own.

link|flag
vote up 1 vote down

I personally really liked Professional C++ as an intermediate or maybe advanced book. It has a great intro without going too basic, great coverage of pointers, STL, even frameworks to use for certain scenarios.

link|flag
This book sucked, i couldnt read it after first 3 chapters. – Andrei Oct 15 at 17:59
vote up 1 vote down

The Annotated C++ Reference Manual by Margaret Ellis and Bjarne Stroustrup should be listed under classics.It is still very well regarded almost 20 years later, though somewhat dated.

link|flag
vote up 1 vote down

Most of what is improtant is already there:

I would add

C++ Coding Standards: 101 Rules, Guidelines, and Best Practices By Herb Sutter, Andrei Alexandrescu

=> Reference probably. Distilled items from Gotchas, Common Knowledge, Lakosm ,etc.

Imperfect C++ Practical Solutions for Real-Life Programming By Matthew Wilson

=> Intermediate, I guess. Has a refreshing approach to it (real-life, what he said)

regards martin

edit: oh, the 101 book is already up on the list, sorry

link|flag
vote up 0 vote down

Data Structures in C++ using STL

This was a textbook for a data structures class I took and one of the few that I considered good enough not to sell back at the end of the semester.

link|flag
vote up 0 vote down

I would also recommend

C++ in a Nutshell by  Ray Lischner

Its is quite precise and for intermediate programmers. Good for interview preparations.

link|flag
vote up 0 vote down

there is a similar thread here:

link|flag
vote up 0 vote down

I would like to recommend "Inside the C++ Object Model" by Stanley Lippman. It explains well how C++ object works under the hood. Knowing these details is a must to be a good C++ programmer.

link|flag
vote up 0 vote down

STL links at www.stepanovpapers.com especially http://www.stepanovpapers.com/Stepanov-The_Standard_Template_Library-1994.pdf and http://www.stepanovpapers.com/STL/DOC.PDF

link|flag
vote up 0 vote down

I wouldn't recommend either Effective C++ or More Effective C++. Reading these books lures programmers into believing that all those fun (really?) stuff in C++ are the important things you should learn or focus on, while the reality is quite the opposite - basic programming rules, basic traps and pitfalls, clear understanding of data-structure and algorithms, clear & clean code, even basic principles such as DRY and KISS are more important than some code trick you'll never gonna need to use for another 10 years (likely forever).

Stop wasting your precious time on useless workarounds (maybe somebody likes to call them tricks or even - more fancifully - 'techniques'); instead, use the time saved from this to learn new languages (you should at least learn one FPL and one Imperative Programming Language), to learn how to write clean and solid code, how to cooperate with coworkers, even how to write documents are more useful than the dusty language tricks.

link|flag
vote up 0 vote down

I think its good to read "Inside C++ object model" at intermediate level. It clears out lots of things before going to above intermediate level

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.