up vote 16 down vote favorite
23
share [g+] share [fb]

Possible Duplicate:
The Definitive C++ Book Guide and List

I'm looking to pick up a good C++ book.

I have been programming for many years in managed languages and I will me making the jump to native code using C++.

What books do you recommend to get me up to speed with all the intricacies of C++.

Thanks.

link|improve this question
feedback

closed as exact duplicate by Bill the Lizard Aug 5 '10 at 18:51

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

19 Answers

up vote 24 down vote accepted

Effective C++.

link|improve this answer
Read through the first few chapters... Excellent book so far! – user13015 Sep 17 '08 at 20:30
1  
this is not an expert book; maybe intermediate. – Comptrol Jan 18 '09 at 18:56
and more effectice C++ – Big Leonardo Sep 24 '09 at 12:13
feedback

My suggestion and favorite is Modern C++ Design by Andrei Alexandrescu.

link|improve this answer
I would recommend this for someone further from intermediate and closer to the expert end of the spectrum. Especially if the person's not yet familiar with C++ and is still used to managed languages. – tgamblin Sep 16 '08 at 16:59
feedback

To get started I'd say you go with either C++ Primer from Lippman or Thinking in C++ from Bruce .Eckel

After that, get familiar with the STL.

Nicolai Josuttis

  • The C++ Standard Library - A Tutorial and Reference.

And I've never known a C++ developer who didn't learn a lot from the books of both

Scott Meyers :

  • Effective C++
  • More Effective C++
  • Effective STL

and Herb Sutter:

  • Exceptional C++
  • More Exceptional C++
link|improve this answer
feedback

It was discussed so many times here, but once again "The C++ Programming Language".

link|improve this answer
4  
It is great for reference, but not to learn C++ from. – Matt Price Sep 16 '08 at 17:50
feedback

Start with Accelerated C++ to quickly learn how to program in C++ (it's aimed at programmers with some experience). Then move on to books such as Effective C++ or Exceptional C++ to learn the details (there are a lot of them!). They are very good books - but they're not really appropriate as an introduction.

link|improve this answer
feedback

I have made a list of the best C++ books that I have seen:

  • More Exceptional C++
  • C++ Template Metaprogramming
  • Nicolai M. Josuttis - C++ Standard Library, The A Tutorial and Reference
  • Modern C++ Design, Generic Programming and Design Patterns Applied
  • Applied C++ Practical Techniques for Building Better Software
  • Bjarne Stroustrup - The C++ Programming Language
  • C++ Template Metaprogramming
  • C++ Templates - The Complete Guide
  • Designing Components with the C++ STL
  • Efficient C++: Performance Programming Techniques
  • C++ Common Knowledge: Essential Intermediate Programming
  • C++ Cookbook
  • Inside the C++ Object Model
  • Standard C++ IOStreams and Locales
  • C++ FAQs, Second Edition
  • Imperfect C++: Practical Solutions for Real-Life Programming
  • Exceptional C++ Style: 40 New Engineering Puzzles, Programming Problems and Solutions
  • C++ Gotchas
  • Effective & More Effective C++
  • C++ Coding Standards: 101 Rules and Guidelines
  • Effective STL: 50 Specific Ways to Improve Your Use of STL
  • Effective C++: 55 Specific Ways to Improve Your Programs
  • Exceptional C++: 47 Engineering Puzzles, Programming Problems, and Solutions
link|improve this answer
feedback

The best books I read about C++ were written by Andrew Koenig:

The 1st one will take you from beginner to intermediate, The second one is more advanced and very good. A. Koenig is one of the very few C++ experts that can actually write.

The books from scott meyers should be your next read:

They details the most common programming idioms of the languages, easy read too, and quite cheap on amazon. Meyers is also a good writer and try to explain the most common concepts and c++ habits.

If i would have to recommend one book to get yourself started in c++, that would be accelerated c++.

Now the hard part: when you'll be done with these books, that's when you will start to actually use most of the c++ programming paradigm. From that point you'll be able to pick the books by yourself: you will be more comfortable with one paradigm (oo, templates etc.) and try to improve on the other ones.

Enjoy the ride,

-- ppi

link|improve this answer
feedback

Bruce Eckel's Thinking in C++ is a pretty good book and it's available for free download.

link|improve this answer
+1 great book, I enjoyed it – chester89 Jul 23 '09 at 6:42
feedback

C++ Coding Standards - This book serves as a good overview of modern C++ development and an index into the C++ literature. It doesn't go into depth with the issues but gives good references when you need them. I give this and Effective C++ to developer who hasn't read them.

link|improve this answer
feedback

My favorite book is Modern C++ Design (by Alexandrescu) but it's advanced book. I've read a lot of intermediate books, like all of Sutters books, all of Meyers books, The Stroustroup, the Josuttis. But the one I think is the best for people that wont to "jump" inside C++ whitout passing in the C room is "Accelerated C++" by Andrew Koenig and Barbara E. Moo.

It's an amazing book that can teach you to "play" c++

link|improve this answer
feedback

I found http://www.parashift.com/c++-faq-lite/ very informative when moving from C to C++.

link|improve this answer
feedback

I think "C++ For Game Programmers" by Noel Llopis is an amazing book with a misleading title (besides the samples, it has little to do with games). The book not only explains how to use the language, but also how to use it efficiently, and why it has been designed this way, all this from a very pragmatic point of view. If you really want to get a deep understanding of what you are doing, you should definitely have a look at this book.

link|improve this answer
+1 for this answer. IMO, the title of the book is so "awesomely" misleading. =p – ShaChris23 Mar 19 '10 at 20:45
feedback

Exceptional C++
More Exceptional C++ and
More Effective C++.

But Effective C++ is the best of these.

link|improve this answer
feedback

C++ Common Knowledge: Essential Intermediate Programming

link|improve this answer
If you only read one book on C++, this should be the one. – sakra Sep 11 '10 at 8:24
feedback

The best reference I've found is C++: The Complete Reference by Herb Schildt

link|improve this answer
feedback

If you want to understand the STL, and you probably should, then I would recommend Generic Programming and the STL. The first section gives the best understanding of how the containers and algorithms are put together that I've ever read. I never "got it" till reading this book. The rest is reference material that you can find online at sgi's website.

link|improve this answer
feedback

Beginning Visual C++ 6 By Ivor Horton (Wrox).

This is an awesome book. Don't be fooled by the Visual in the name, it does have things that relate to the VC++ IDE but it also has a wealth of knowledge for entry and understanding of C++ language.

Also don't be discourged even though you are beyond entry level and the book is titled "Beginning" it is worth the read and i'm sure anyone else who has run through it would agree.

link|improve this answer
feedback
  • Effective C++
  • exceptional c++
  • c++ coding standards
  • Modern C++ Design

in that order

link|improve this answer
feedback

I would say there are a lot of good ones published by Addison Wesley which have been mentioned above.

I would add, if you are a reasonably experienced programmer in other languages and have some C, but new to C++ then Stephen C Dewhurst: C++ Common Knowledge is very good - it's a slim volume covering some of the "C++ dark corners", but tells you a lot without any waffle. Plus it's an entertaining read.

link|improve this answer
feedback

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