up vote 14 down vote favorite
7
share [g+] share [fb]

It's been a longtime since I've done any C++ (probably about 13 years, since I graduated college). I've developing in various others languages since then. My new gig uses a fair bit of C++. Any recommendations for getting bootstrapped?

To clarify -- I don't need an "into to programming" book. E.g., what's a variable, flow control, etc. I understand the concepts of OO having implemented them, etc. I'm looking for the best way to get to the specifics of C++.

link|improve this question

feedback

8 Answers

up vote 7 down vote accepted

Well, you could read TICPP (Thinking in C++). It's not a refresher, but it's a darn good book on c++ and it's free.

link|improve this answer
feedback

Online? Try the C++ FAQ Lite.

If you're happy to buy books too, I'd recommend The C++ Programming Language.

link|improve this answer
feedback

I have always found the best way to refresh my knowledge of a language is to solve problems using that language.

Pick some problems and try to solve them using different subsets of the language.

For example, in C++, try and solve the problems using:

  1. Stock C++
  2. Minimal C++ (as little C++ and as much C - like it or not, C is still part of C++)
  3. STL libraries
  4. Any other libraries that your new 'gig' will require you to use.

Some good problem sets:

Good Luck

link|improve this answer
feedback

A quick tutorial on C++ (and templates).

link|improve this answer
feedback

It's not online, but I'd still suggest reading through a used copy of The Annotated C++ Reference Manual. Best $0.34 you'll ever spend. (Shipping costs more.)

Also:

link|improve this answer
The ARM is obsolete – anon Feb 13 '09 at 1:09
Perhaps. The C++ language has continued to evolve. But the language core hasn't changed. For understanding C++, the signal to noise ratio of the ARM is unbeatable! I put it up there with K&R (The C Programming Language) on my bookshelf. I still refer back to it regularly! – Mr.Ree Feb 13 '09 at 14:59
feedback

FAQ from stroustrup

link|improve this answer
feedback

This is my recommendation to anyone http://www.cplusplus.com/

Good tutorial and a good reference to the libraries etc. that you'll need as the pieces fall back into place.

link|improve this answer
feedback

I found http://www.eternallyconfuzzled.com/ very helpful on subjects that aren't easily explained!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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