I know C pretty well, and I need to learn C++ pretty quickly. Does anyone know of any books, that assume a decent knowledge of C, and then goes over C++?
|
feedback
|
Yes, Bruce Eckel's Thinking in C++ does exactly that. It (or at least, the first edition of it; the book has grown since then) is how I learned C++: it assumed you know C and then, incrementally, taught the ways in which C++ adds to C. I read other books afterwards, notably Meyers' and Stroustrup's: but both of these I think assume that you can already read C++. Thinking in C++ taught me, at least, how to read the syntax. | |||
|
feedback
|
|
The C++ programming language amazon link Accelerated C++: Practical Programming by Example amazon link Essential C++ amazon link C++ How to Program amazon link Thinking in C++: Introduction to Standard C++ amazon link | ||||
feedback
|
|
You've got some very good advice already here, devin. I just want to impart some supplementary advice. Pace yourself. As best as time will allow. Both the C++ language and the C++ standard library are several times the size of C. Despite the language's name, it's not an incremental change. C++ can be particularly deceptive for C veterans because while its paradigms are very different, it is largely backwards-compatible with C. Be in the mindset to tackle old problems in a new way. It will be difficult because you will have to unlearn some habits and C++ won't force you to unlearn them. | |||
|
feedback
|
|
Well, honestly, I recommend, as you might have went to K&R for C, going straight to the source for C++ and get Stroustrup's book: http://www.amazon.com/C-Programming-Language-Special-3rd/dp/0201700735 Although, another approach is Deitel's book. Surely, you know how to program, but you can skip the parts you already know and classes are introduced quickly: http://www.deitel.com/books/cpphtp5/ One of my favorite C++ books has always been Ivor Horton's Beginning C++: http://www.amazon.com/Ivor-Hortons-Beginning-Complete-Compliant/dp/186100012X | |||
|
feedback
|
|
I would recommend you the "C++ How to Program" by Dietel and Dietel. It has a good introduction to C and deals extensively with all the major features of C++. It is also quite widely used in schools today. I wouldn't suggest you to pick up something link "The C++ programming language" by Bjarne Stroustrup (C++ creator) owing to it's depth which can be quite overwhelming. | |||||||||||
feedback
|
|
I think nothing beats Bjarne Stroustrup's "The C++ Programming Language" (Amazon). The author of the book is the person behind the language itself. | |||
|
feedback
|
|
Stroustrup's books are good, Jim Coplien's books are good, Scott Myers' books are good, and I'm fond of the C++FAQ Book. | |||
|
feedback
|