vote up 0 vote down star

The best c++ book that you recommend for three level of people

1)I know nothing about c++

2)used to c++ but afraid of templates

3)Extreme guys

flag

closed as exact duplicate by yesraaj Nov 11 '08 at 6:39

14 Answers

vote up 6 vote down check

This was already answered

link|flag
vote up 0 vote down

For (1), this was my C++ college text, and it was great: C++ Primer by Stanley Lippman.

link|flag
vote up 0 vote down

1) C++ - Stroustrup "The C++ Programming Language" http://rads.stackoverflow.com/amzn/click/0201700735

2) C++ Templates The Complete Guide by David Vandevoorde and Nicolai M. Josuttisalt text

link|flag
vote up 2 vote down

For 3) Modern C++ Design, Generic Programming and Design Patterns Applied

link|flag
vote up 2 vote down

What is the best source to learn C++?

link|flag
vote up 0 vote down

This was my first C++ book A First Book Of C++ it has been revised. Here is the third edition on amazon

This was a great book for someone who had no prior programming knowledge.

alt text

link|flag
vote up 1 vote down

1) If the people know something about other programming languages, I'd say Thinking in C++, also for (2).

I sincerely feel it made me into a better programmer, with its "Let's start from C, teach you something about the hardware level, how those abstractions work, and then the high level stuff". Especially, all the stuff you could do with just structs in C++ is amazing, and it's so clearly described there...

Plus, it's free if you want to read it online.

It's not an easy book, but then again, C++ isn't either. It's very readable, though.

link|flag
Bruce Eckel's book. It would cover both points 1 and 2, I agree. – slashmais Sep 30 '08 at 15:23
vote up 3 vote down

1) C++ Primer 2) C++ Templates: The Complete Guide 3) Modern C++ Design

link|flag
vote up 3 vote down

I can recommend Accelerated C++: Practical Programming by Example by Andrew Koenig and Barbara E. Moo

link|flag
+1, it's great for 1)I know nothing about c++. – Sébastien RoccaSerra Sep 30 '08 at 14:43
vote up 1 vote down

Check also books by Herb Sutter.

link|flag
vote up 2 vote down

3) C++ Template Metaprogramming

link|flag
vote up 0 vote down

3) Inside the C++ Object Model by Stan Lippman. This is one of the best books for truly understanding how C++ works. By understanding how cfront (the original C++ compiler that compiled C++ code into C code) works you will build a good mental model of C++. Armed with this knowledge I have a good understanding of how C++ code will work all the way down to the hardware.

link|flag
vote up 0 vote down

If you read only one book it should be the C++ Primer.

link|flag
vote up 0 vote down

The Most Important C++ Books...Ever - Scott Meyers Recommendation

  1. The C++ Programming Language by Bjarne Stroustrup

    alt text

  2. Effective C++ by Scott Meyers

    alt text

  3. Design Patterns by Erich Gamma, Richard Helm, Ralph Johnson, and John Vlissides alt text

  4. International Standard for C++

    alt text

  5. Modern C++ Design by Andrei Alexandrescu

    alt text

link|flag

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