Possible Duplicate:
The Definitive C++ Book Guide and List

Most of the C++ books are extremely tedious for a high-mileage C programmer, who wants to skip the C basics and get down to learning to write good C++.

Additionally, it would be especially helpful to have guidance on coping with programs that need to be a mixture of C/C++ (e.g., when doing socket programming; or trying to add ICE/C++ to an existing C program.

The Ira Pohl book seems to have some very bad reviews on Amazon: http://www.amazon.com/C-Programmers-Ira-Pohl/dp/080533159X

Anything better out there?

link|improve this question
Possible duplicate of The Definitive C++ Book Guide and List. – In silico Nov 21 '10 at 8:18
4  
While C and C++ share a lot of common syntactic features and most C code can be used in C++ code, idiomatic C++ has very little in common with idiomatic C. The list to which In silico linked includes a number of very good introductory books. Yes, some of the chapters are going to be boring and you can skim over them, but that is (IMO) just a cost of learning a new programming language. Personally, I'd recommend Accelerated C++, which is an excellent introduction to C++. Once you are familiar with the language, I'd read every book written by Scott Meyers or Herb Sutter :-) – James McNellis Nov 21 '10 at 8:26
1  
There is no C/C++ language, or "mixture". It's either idiomatic C or idiomatic C++. Like James says, you read the same books as everyone else who doesn't know C++. Things you seem to already know should be treated as coincidence, nothing more. C++ is a different language for a reason. – GManNickG Nov 21 '10 at 8:32
feedback

closed as exact duplicate by In silico, James McNellis, GManNickG, Armen Tsirunyan, FredOverflow Nov 21 '10 at 10:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

I recommend Bruce Eckels's Thinking in C++ which is a free book. A short excerpt from the preface:

You can’t just look at C++ as a collection of features; some of the features make no sense in isolation. You can only use the sum of the parts if you are thinking about design, not simply coding. And to understand C++ this way, you must understand the problems with C and with programming in general. This book discusses programming problems, why they are problems, and the approach C++ has taken to solve such problems. Thus, the set of features I explain in each chapter will be based on the way that I see a particular type of problem being solved with the language. In this way I hope to move you, a little at a time, from understanding C to the point where the C++ mindset becomes your native tongue.

link|improve this answer
It's only the first volume that's free, and that one doesn't include the standard classes and how to use them. Most writers don't start teaching the standard classes and how to use them. Instead you have to trudge through all that template crud before you can do any actual codeing. The standard classes should be in the first chapters in my opinion. – onemasse Nov 21 '10 at 8:41
2  
The first edition of TIC++ (I haven't read later editions) was explicitly written for C programmers. It explained, incrementally, the ways in which the C++ language added new features/syntax to C. It's what I used, to learn how to to read C++. – ChrisW Nov 21 '10 at 9:20
feedback

May I suggest Accelerated C++?

Why?

Unlike other books mentioned, this book walks you through a complete application (not to mention 4.5 Amazon rating from 91 reviewers!). I know how you feel wasting time reading books that just cover the basics. We experienced programmers just want to see how it's done in other languages, not learning the basics that exist in all languages. To top it off, this book uses C++ like how it's supposed to be used: with STL and other modern facilities. Coming from C background, you will find STL helps you become more productive.

Additionally, one benefit you will get from learning C++ is that you will be exposed to Object-oriented (OO) paradigm. Based on my personal experience, the most satisfying thing about moving from C to C++ is the numerous "aha!" moments of how OO has helped make my code more organized and readable.

I think for you to get the most out of this book is to look at the application being built in this book, and think about how you would implement it using C. (Heck, if you have a lot of time, do implement it in C). Then, read the book, and see how the authors solved it in C++. I think this will engage you much more than simply reading the book.

Regardless of whichever book(s) you decide to pick, good luck and have fun!

link|improve this answer
1  
Note: If you want to take it beyond STL, I wholeheartedly recommend learning Qt. It will help you become infinitely more productive. Qt has, IMO, the most easy-to-read documentation, and intuitive APIs for C++ (yes, that includes Boost). – ShaChris23 Nov 21 '10 at 9:18
feedback
  • You could try The C++ Programming Language (Bjarne Stroustrup) and skip the first part (Basic Facilities ~ 200 pages)
  • Scott Meyers books (this one, this one and this one) as easily read and provide interesting insight on pure C++ matters
  • Regarding socket programming, POSA2 provides object oriented patterns for network applications, so in a sense, it shows some C++ ways to work with a well known C API.
link|improve this answer
feedback
  • Start with Stanley Lippman, C++ Primer - the best thing IMHO to start with. Covers all aspects of the language.
  • After that you just have to read Meyers' Effective and More Effective C++,
  • as well as Sutter's Exceptional and More Exceptional C++.
  • Templates are covered from A to Z in Vandervoorde's book called "Templates in C++ - The Complete Guide".
  • Advanced techniques can be found in Alexandriescu's book "Modern C++ Design".

If you read and understand all the above - you'll be just great :) hth

link|improve this answer
feedback

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