vote up 5 vote down star
7

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.

flag

19 Answers

vote up 18 vote down check

Effective C++.

link|flag
Read through the first few chapters... Excellent book so far! – jaysonp Sep 17 '08 at 20:30
this is not an expert book; maybe intermediate. – Comptrol Jan 18 at 18:56
and more effectice C++ – Roman Sep 24 at 12:13
vote up 7 vote down

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

link|flag
It is great for reference, but not to learn C++ from. – Matt Price Sep 16 '08 at 17:50
vote up 9 vote down

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

link|flag
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
vote up 0 vote down

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

But Effective C++ is the best of these.

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
+1 great book, I enjoyed it – chester89 Jul 23 at 6:42
vote up 4 vote down

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|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 3 vote down

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|flag
vote up 6 vote down

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|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down
  • Effective C++
  • exceptional c++
  • c++ coding standards
  • Modern C++ Design

in that order

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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