|
C++ Idioms - Recasts the well-known idioms of "Advanced C++ Programming Styles and Idioms" in pattern form and organizes these idioms into a true pattern language.
|
|
|
|
|
C++: Under the Hood - Explains run-time C++ implementation details such as class layout techniques and the virtual function call mechanism.
|
|
Casting in C++ - In-depth information on the four new casting operators available in C++. Written for those who know C++ but are using the old C-style casts.
|
|
|
|
|
|
|
|
|
Herb Sutter - Publications - Over 80 in-depth articles about object-oriented software development and C++ design and programming have been published in C/C++ Users Journal |
|
|
|
Internet C++ - An Open Source project for a C++ virtual machine (similar to the Java VM) but for the C++ language.
|
|
|
|
Passing By Reference-to-const - Explains why the rules for initializing references make passing by reference-to-const an efficient and attractive alternative to passing by value.
|
|
Reference Initializations - Explains how the rules for initializing references differ from the rules for initializing pointers.
|
|
|
|
The const Qualifier - Explains the use of the const qualifier on small code snippets. (by Carlo Wood)
|
|
|
What is Koenig Lookup? - A definition of argument-dependent name lookup with examples for application with HP aC++.
|