vote up 5 vote down star
4

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++.

flag

8 Answers

vote up 5 vote down check

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|flag
vote up 8 vote down

Online? Try the C++ FAQ Lite.

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

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

FAQ from stroustrup

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
The ARM is obsolete – zabzonk Feb 13 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! – mrree Feb 13 at 14:59
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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