views:

105

answers:

2

Hi all,

Is there any good list of techniques + descriptions for C++ newbies. I was thinking of a list describing RAII, RVO, Lvalues... This would be for newbies that don't currently understand those techniques or come from other languages where those are not applicable.

Something short & sweet would be preferred :-)

+1  A: 

http://www.parashift.com/c++-faq-lite/ covers pretty much everything.

dauphic
+1 for marshall cline
Alan
+2  A: 

Yes, they're in two very great books authored by the same person.

Effective C++
More Effective C++

Alan
Add `Effective STL` to that list ;)
D.Shawley