Showing revision 11
C++ documentation
General tutorials and references on the web
Specific topics
- copy constructors: [here], [here]
- assignment operator: [1]
- [use of const]
- [Templates]
- /References -- A reference is a variable that refers to another variable. References are like pointers, but they don't need to be dereferenced using "*ptr".
- [Scope] -- when you declare a variable, where can you reference it and for how long does it exist?
- [Dynamic memory allocation] - the "new" and "delete" operators for allocating memory.