For the past decade, I've needed C++ on and off. And every time I need it, I realize I've forgotten a lot of it, and then re-learn it again (I've repeated this process quite a bit). Well now I am in need of it again, however, all my Googling reveals just beginner resources, and I sort of want to skip that stuff. I need a refresher on all the things like usage for:

const
register
inline

and the nuances surrounding pass-by-reference, value, etc.

Anyone have a good source?

I would prefer an online source over a book.

link|improve this question

I mean, I didn't forget for loops, if statements, pointers, references, or classes so I want to skip all the beginner material that goes through this stuff (and most beginner websites don't mention the register attribute which I will need for my project). – Nick Feb 24 '11 at 3:15
2  
Has the advances of compiler optimizations negate the need for the 'register' keyword and shouldn't it be deprecated by now? – adib Feb 24 '11 at 3:26
Is that so? Huh, interesting. – Nick Feb 24 '11 at 3:50
feedback

2 Answers

up vote 8 down vote accepted

WARNING: Shameless plug ahead. :-)

I used to teach a C++ programming course at Stanford and ended up writing what I've heard is a pretty decent introduction to C++. It dives right into the material and covers a lot of tricky topics like const, copy functions, operator overloading, and templates. If you're interested, it's freely available online. I've made a few updates to it since then, and if you're interested you can check out the archived version of Fall 2010's course website, which also has sample code and some assignments to play around with.

Hope this helps!

link|improve this answer
3  
That explains a lot. – GManNickG Feb 24 '11 at 3:30
1  
Nice resource! Thanks a lot! – Nick Feb 24 '11 at 3:38
Excellent! I've only had a chance to skim over it, but it looks like it proves wrong my long-held belief that there are no good quality C++ tutorials available online (any tutorial that mentions accumulate on the first page can't be too bad ;-)). – James McNellis Feb 25 '11 at 17:03
feedback

guru of the week

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.