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
|
|
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
|
|||
|
|
closed as exact duplicate by yesraaj Nov 11 '08 at 6:39 |
|
|
This was already answered |
|||
|
|
|
|
For (1), this was my C++ college text, and it was great: C++ Primer by Stanley Lippman. |
||
|
|
|
|
1) C++ - Stroustrup "The C++ Programming Language" 2) C++ Templates The Complete Guide by David Vandevoorde and Nicolai M. Josuttis |
||
|
|
|
|
For 3) Modern C++ Design, Generic Programming and Design Patterns Applied |
||
|
|
|
|
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.
|
||
|
|
|
|
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. |
|||
|
|
|
I can recommend Accelerated C++: Practical Programming by Example by Andrew Koenig and Barbara E. Moo |
||
|
|
|
Check also books by Herb Sutter. |
||
|
|
|
|
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. |
||
|
|
|
|
If you read only one book it should be the C++ Primer. |
||
|
|