This question attempts to collect the few pearls among the dozens of bad C++ books that are released every year.

Unlike many other programming languages, which are often picked up on the go from tutorials found on the Internet, few are able to quickly pick up C++ without studying a good C++ book. It is way too big and complex for doing this. In fact, it is so big and complex, that there are many bad C++ books out there. And we are not talking about bad style, but things like sporting glaringly obvious factual errors and promoting abysmally bad programming styles. And it's even worse with online tutorials. (There is a reason nobody bothered to setup a similar question for online tutorials.)

Please provide quality books and an approximate skill level. Add a short blurb/description about each book that you have personally read/benefited from. Feel free to debate quality, headings, etc. Books that meet the criteria will be added to the list. Books that have reviews by the Association of C and C++ Users (ACCU) have links to the review.


Note: FAQs and other resources can be found in the C++ tag info and under . There is also a similar post for C: The Definitive C Book Guide and List


Reference Style - All Levels

  1. The C++ Programming Language (Bjarne Stroustrup) The classic introduction to C++ by its creator. Written to parallel the classic K&R, this indeed reads very much alike it and covers just about everything from the core language to the standard library, to programming paradigms to the language's philosophy. (Thereby making the latest editions break the 1k page barrier.) [Review]

  2. C++ Standard Library Tutorial and Reference (Nicolai Josuttis) The introduction and reference for the C++ Standard Library. The second edition (released on April 9, 2012) covers C++11. [Review]

  3. The C++ IO Streams and Locales (Angelika Langer and Klaus Kreft) There's very little to say about this book except that, if you want to know anything about streams and locales, then this is the one place to find definitive answers. [Review]

C++ 11 References:

  1. The C++ Standard (INCITS/ISO/IEC 14882-2011) This, of course, is the final arbiter of all that is or isn't C++. Be aware, however, that it is intended purely as a reference for experienced users willing to devote considerable time and effort to its understanding. As usual, the first release was quite expensive ($300+ US), but it has now been released in electronic form for $30US -- probably the least expensive of the reference books listed here.

  2. Overview of the New C++ (C++11) While this claims to be an overview rather than a reference, it's nearly the only book devoted to C++11 that's currently available. Fortunately, it's by Scott Meyers, who's a highly respected author on C++. Even though the list of items is short, the quality is high.


Beginner

Introductory

If you are new to programming or if you have experience in other languages and are new to C++, these books are highly recommended.

  1. C++ Primer† (Stanley Lippman, Josée Lajoie, and Barbara E. Moo) Coming at 1k pages, this is a very thorough introduction into C++ that covers just about everything in the language in a very accessible format and in great detail. Make sure you have the latest edition! [Review]

  2. Accelerated C++ (Andrew Koenig and Barbara Moo) This basically covers the same ground as the C++ Primer, but does so on a fourth of its space. This is largely because it does not attempt to be an introduction to programming, but an introduction to C++ for people who've previously programmed in some other language. It has a steeper learning curve, but, for those who can cope with this, it is a very compact introduction into the language. (Historically, it broke new ground by being the first beginner's book using a modern approach at teaching the language.) [Review]

  3. Thinking in C++ (Bruce Eckel) Two volumes; second is more about standard library, but still very good

  4. Programming: Principles and Practice Using C++ (Bjarne Stroustrup) An introduction to programming using C++ by the creator of the language. A good read, not only for beginners.

† Not to be confused with C++ Primer Plus (Stephen Prata), with a significantly less favorable review.

Best practices

  1. Effective C++ (Scott Meyers) This was written with the aim of being the best second book C++ programmers should read, and it succeeded. Earlier editions were aimed at programmers coming from C, the third edition changes this and targets programmers coming from languages like Java. It presents ~50 easy-to-remember rules of thumb along with their rationale in a very accessible (and enjoyable) style. [Review]

  2. Effective STL (Scott Meyers) This aims to do the same to the part of the standard library coming from the STL what Effective C++ did to the language as a whole: It presents rules of thumb along with their rationale. [Review]


Intermediate

  1. More Effective C++ (Scott Meyers) Even more rules of thumb than Effective C++. Not as important as the ones in the first book, but still good to know.

  2. Exceptional C++ (Herb Sutter) Presented as a set of puzzles, this has one of the best and thorough discussions of the proper resource management and exception safety in C++ through Resource Acquisition is Initialization (RAII) in addition to in-depth coverage of a variety of other topics including the pimpl idiom, name lookup, good class design, and the C++ memory model. [Review]

  3. More Exceptional C++ (Herb Sutter) Covers additional exception safety topics not covered in Exceptional C++, in addition to discussion of effective object oriented programming in C++ and correct use of the STL. [Review]

  4. Exceptional C++ Style (Herb Sutter) Discusses generic programming, optimization, and resource management; this book also has an excellent exposition of how to write modular code in C++ by using nonmember functions and the single responsibility principle. [Review]

  5. C++ Coding Standards (Herb Sutter and Andrei Alexandrescu) "Coding standards" here doesn't mean "how many spaces should I indent my code?" This book contains 101 best practices, idioms, and common pitfalls that can help you to write correct, understandable, and efficient C++ code. [Review]

  6. C++ Templates: The Complete Guide (David Vandevoorde and Nicolai M. Josuttis) This is the book about C++ templates. It covers everything from the very basics to some of the most advanced template metaprogramming and explains every detail of how templates work (both conceptually and at how they are implemented) and discusses many common pitfalls. Has excellent summaries of the One Definition Rule (ODR) and overload resolution in the appendices. [Review]


Above Intermediate

  1. Modern C++ Design (Andrei Alexandrescu) A groundbreaking book on advanced generic programming techniques. Introduces policy-based design, type lists, and fundamental generic programming idioms then explains how many useful design patterns (including small object allocators, functors, factories, visitors, and multimethods) can be implemented efficiently, modularly, and cleanly using generic programming. [Review]

  2. C++ Template Metaprogramming (David Abrahams and Aleksey Gurtovoy)

  3. C++ Concurrency In Action (Anthony Williams) A book covering C++-11 concurrency support including the thread library, the atomics library, the C++ memory model, locks and mutexes, as well as issues of designing and debugging multithreaded applications.


Classics / Older

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

  1. The Design and Evolution of C++ (Bjarne Stroustrup) If you want to know why the language is the way it is, this book is were you find answers. This covers everything before the standardization of C++.

  2. Ruminations on C++ - (Andrew Koenig and Barbara Moo) [Review]

  3. Advanced C++ Programming Styles and Idioms (James Coplien) A predecessor of the pattern movement, it describes many C++-specific "idioms". It's certainly a very good book and still worth a read if you can spare the time, but quite old and not up-to-date with current C++.

  4. Large Scale C++ Software Design (John Lakos) Lakos explains techniques to manage very big C++ software projects. Certainly a good read, if it only was up to date. It was written long before C++98, and misses on many features (e.g. namespaces) important for large scale projects. If you need to work in a big C++ software project, you might want to read it, although you need to take more than a grain of salt with it. There's been the rumor that Lakos is writing an up-to-date edition of the book for years.

  5. Inside the C++ Object Model (Stanley Lippman) If you want to know how virtual member functions are commonly implemented and how base objects are commonly laid out in memory in a multi-inheritance scenario, and how all this affects performance, this is where you will find thorough discussions of such topics.

This question has historical significance, but is not a good example of an appropriate question. Read and learn from this post, but please do not use it as evidence that you can ask similar questions.

See the FAQ for more info.

link|improve this question
27  
Tiny URL for this question: tinyurl.com/so-cxxbooks – sbi Feb 4 '11 at 17:47
1  
In Reference Style - All Levels , shouldn't C++ - The Complete Reference be included? – IntermediateHacker Apr 15 at 15:40
5  
@IntermediateHacker: Are you trolling?? – sbi Apr 16 at 12:51
show 6 more comments
feedback

36 Answers

1 2

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|improve this answer
33  
This was the book that opened my eyes and made me realise how much I hated C++ – Brent.Longborough Jan 4 '09 at 11:54
3  
+1: this is probably the best book for understanding how to use templates. – D.Shawley Oct 11 '09 at 14:13
51  
@Brent.Longborough: Why? Because nobody is enforced to write libary code or templated code in general? It is a bit like saying A manual on reflections opened my eyes and made me realise how much I hated C#. Or like hatred on your car because there's a manual for the engine, to be used by engineers. Seriously, nobody is enforced to write such code. But for those who want, e.g. library implementors/programmers this guide is indeed a complete one. It is for those who cope with templates, so programmers like you don't have to. – phresnel Jun 15 '11 at 9:54
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
6  
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/lib_design_03/notes/large.html – phaedrus Apr 10 '09 at 8:05
12  
I read the book back in 1999, and found it a good read back then. It is worth reading now to get a good feel for "dependency heirarchy." but this is 2010. LSC++D is wayyyy outdated. Written in an era when even a modest C++ program could take 8-10 hours to compile and link. 95% of the issues addressed are obsolete. I have read the drafts for the second book a few years ago. Basically the manuscript was focussed on why every change to C++ in the past 15 years is harmful. Namespaces, exceptions, templates, the STL, none of these pass muster. Hopefully the MS has improved since then. – Lance Diduck Apr 26 '10 at 16:42
3  
I agree with Lance Diduck, it's obsolete. An interesting read though, but with a critical mind. – Nikko May 22 '10 at 15:05
show 1 more comment
feedback

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

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

link|improve this answer
2  
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 '09 at 23:51
6  
Hands down the best C++ tutorials ... all other pale in comparison. – bias Mar 26 '09 at 22:49
show 2 more comments
feedback

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

link|improve this answer
1  
It is a very good book and very impressive that covers a lot of fields – Nikko May 10 '10 at 15:03
show 2 more comments
feedback

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|improve this answer
1  
I really like this book, however for a very long time I thought that there were topics that I just didn't know about. It turned out that the common knowledge isn't so common even among very season c++ programmer. Yes, most of the topics are known or should be known, but there are at least few that are either very sparsely used or no one bothers to learn them. Once again, I love this book so don't get me wrong. I'm just stating reality. – ra170 Jan 31 '11 at 0:12
show 1 more comment
feedback

Most of what is important is already there:

I would add

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

link|improve this answer
feedback

I don't know what it's worth, but there's a book available on Stanford's CS106B - Programming Abstractions web site in PDF format. The site is here:
http://www.stanford.edu/class/cs106b/

You can download the book by clicking the "Course Reader PDF" link to the right. The book is called:
Programming Abstractions in C++
Eric Roberts & Julie Zelenski

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

If you are an intermediate level programmer, like fresh out of college, used C++ for small kiddish programs but now started working on C++ projects, the first few chapters of the CS106B course of Stanford is a must-read. It refreshes your memory and neatly moves on to the advanced concepts. Amazing explanations and beautiful examples.

link|improve this answer
5  
I assume you mean the public content available here: stanford.edu/class/cs106b – Tony Feb 17 '11 at 13:51
show 2 more comments
feedback

What about this book?

Essential C++

by Stanley B. Lippman

It is structured in a few chapters by C++ programming paradigms:

Chapter 1. Basic C++ Programming

Chapter 2. Procedural Programming

Chapter 3. Generic Programming Chapter

Chapter 4. Object-Based Programming

Chapter 5. Object-Oriented Programming

Chapter 6. Programming with Templates

Chapter 7. Exception Handling

Appendix A. Exercise Solutions

Appendix B. Generic Algorithms Handbook

Also every chapter has a bunch of exercises.

link|improve this answer
2  
I have read it. It is, essentially, Lippman's C++ Primer boiled down to a third of its volume. And it feels that way. Lippman knows what he's writing about, and the book will contain no serious errors, but it's not written as a 250 page introduction. Nevertheless, we C++ folks should be glad whenever there's a book out there that has all the facts right, and this certainly is such a book. So, yes, a recommendation from me, but with some reservation. – sbi Feb 3 '11 at 21:17
show 1 more comment
feedback

A Beginners C++

Neil Gray | University of Wollongong Published in 1996

An Introduction to Design Patterns in C++ with Qt 4

Alan Ezust, Paul Ezust | Prentice Hall PTR Published in 2006, 656 pages

An Introduction to the Imperative Part of C++ Rob Miller | Imperial College London Published in 2008

C++ Annotations Frank B. Brokken | University of Groningen Published in 2008, 741 pages

C++ Essentials Sharam Hekmat | PragSoft Corporation Published in 2005, 311 pages

C++ GUI Programming with Qt 3 Jasmin Blanchette, Mark Summerfield | Prentice Hall PTR Published in 2004, 464 pages

C++ In Action: Industrial Strength Programming Techniques Bartosz Milewski | Addison Wesley Published in 2001, 485 pages

C++ Neural Networks and Fuzzy Logic Valluru B. Rao, Hayagriva Rao | M & T Books Published in 1995, 549 pages

C++ Programming for Scientists Roldan Pozo, Karin Remington | NIST

C++ Reference Guide Danny Kalev | Informit Published in 2008, 402 pages

C++: A Beginner's Guide Herbert Schildt | McGraw-Hill Osborne Media Published in 2003, 576 pages

C++: A Dialog: Programming with the C++ Standard Library Steve Heller | Prentice Hall PTR Published in 2002, 1122 pages

C++Course Allen B. Downey | Epina GmbH Published in 2005

Optimizing C ++ Steve Heller | Prentice Hall PTR Published in 1998, 416 pages

Software Design Using C++ David Carlson | Saint Vincent College Published in 2007

Thinking in C++, 2nd Edition Part1 Part2 Bruce Eckel | Prentice Hall Published in 2003

link|improve this answer
13  
This is just a long list of mostly lesser known publications, but lacks explanation of what is good/bad about the individual books. Also, some are definitely pre-standard, and I doubt they have much relevance today. This makes your list pretty useless. – sbi Mar 3 '11 at 10:47
3  
How many of them have you read to suggest? And you don't seem to have answered even a single C++ question here. And you added some dated versions of new books. Rubbish, Rubbish! – Comptrol Mar 26 '11 at 16:59
3  
I only now see that this even recommends a book by Herb Schildt. Ugh. That man wrote so legendarily bad books, there's memes about him out there. Sorry, but any answer recommending a book by Schildt should catch a downvote as an automatic service by the system from anyone unhappy enough to have been looking at it. – sbi Oct 26 '11 at 16:57
3  
I've had to try to fix up people who read Schildt. Definitely subtracting one. – DeadMG Oct 26 '11 at 17:01
3  
-1 on recommending bullshildt. – Jon Hanna Dec 9 '11 at 23:53
show 7 more comments
feedback

The Boost C++ Libraries, written by Boris Schäling, and translated to English by Andreas Masur provides an introduction to the Boost libraries. The first edition is available online under a Creative Commons license and covers Boost 1.42.0. There's a newer edition that covers Boost 1.47.0 (but this one is not available for free).

The book focus on Boost and only Boost. It assumes some C++ knowledge, but not too much, so I think it's a good book for the fledgling C++ student that after obtaining a grasp of the language wants to use Boost.

The book covers the most commonly used libraries, and describes each component with examples and enough detail to get you started using each of them. Obviously, given the sheer size of Boost, it can't go into excruciating detail over everything, so this is more of an introductory book than a full reference. Nevertheless, the book is still useful for Boost veterans that want to get started quickly with some part of Boost that they're not familiar with yet.

link|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

Are Deitel and Deitel's series of "C++: How to Program" books not regarded highly?

link|improve this answer
2  
I found that this book tried to cram so much stuff on the pages it was impossible to read. Also, it mostly covers introductory material, and I'd recommend a shorter book, such as Stanley Lipmann's before this one. – André Caron Dec 31 '10 at 4:12
show 3 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
show 1 more comment
feedback

For German readers I can recommend without question the book by Prof. Ulrich Breymann "Der C++ Programmierer", Hanser Verlag, 2009. Its 950 pages cover all possible aspects of C++ from Hello World to STL, Smart Pointers, Thread Programming, Overriding of operator new, etc. It benefits greatly by being a very recent book (and a standard text for German informaticians) so is targeted to the C++0x standard syntax. It is also a beutifully produced book, which makes for a pleasure to read.

I have coached and consulted in C++ in recent years and this is my constant companion and always my first recommendation.

link|improve this answer
show 2 more comments
feedback

API Design for C++ by Martin Reddy. Good read after Meyers' Effective C++ and and Josuttis's The C++ Standard Library: A Tutorial and Reference.

link|improve this answer
feedback

I think, while not primarily targetting C++, the GOF's Design Patterns - Elements of Reusable Object-Oriented Software by Gamma, Helm, Johnson, Vlissides should have a place here, since it teaches basics of solid software design, mostly using C++ for code examples, thus giving good insight into what to do with C++.

link|improve this answer
show 1 more comment
feedback

Nobody pointed to msdn C++ language reference. It is a pretty good stuff:-

MSDN C++ language Reference http://msdn.microsoft.com/en-us/library/3bstk3k5.aspx

link|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

I think C++ in easy steps is one of the best, and most concise ways to learn C++. It's only about 15 bucks USD, and it taught me everything I know in about 150 pages. An introduction to programming is present, but I guess it's all personal choice when it comes to books although some are more widely recognized than others.

link|improve this answer
show 1 more comment
feedback

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|improve this answer
1  
This book sucked, i couldnt read it after first 3 chapters. – vehomzzz Oct 15 '09 at 17:59
feedback

I haven't read much (unfortunately), but I really enjoyed Navigating C++. It had some great tips and tricks that was simple but yet those you never think of. What I also remember is the exception handling and that they had a great boilerplate that could be used for any class (I read it 3-4 years ago..)
I don't have any concrete examples, but the link goes to Google Books which describes it pretty good

link|improve this answer
feedback

Test Your C++ Skills by Yashavant Kanetkar

This book contains tons of small exercise questions for different topics of the C++ domain.

link|improve this answer
feedback
1 2

protected by Robert Harvey Apr 16 at 17:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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