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.
|
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. |
||
|
|
|
|
|
||
|
|
It was discussed so many times here, but once again "The C++ Programming Language". |
||
|
|
|
My suggestion and favorite is Modern C++ Design by Andrei Alexandrescu. |
||
|
|
|
Exceptional C++ But Effective C++ is the best of these. |
||
|
|
|
|
I found http://www.parashift.com/c++-faq-lite/ very informative when moving from C to C++. |
||
|
|
|
|
Bruce Eckel's Thinking in C++ is a pretty good book and it's available for free download. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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.
And I've never known a C++ developer who didn't learn a lot from the books of both
and Herb Sutter:
|
|||
|
|
|
|
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++ |
||
|
|
|
|
I have made a list of the best C++ books that I have seen:
|
||
|
|
|
|
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. |
||
|
|
|
|
in that order |
||
|
|
|
|
The best reference I've found is C++: The Complete Reference by Herb Schildt |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|