Learning C++
From JUCE
Resources for C++ beginners
Common C++ beginner's mistakes that you should avoid!
- Using 'new' where you could use a stack object. (Lots of java programmers seem to do this): StackOverflow
- Using inheritance instead of composition: GOTW
- Using 'delete' rather than RAII-based object management: JUCE coding standards