This is an old revision of the document!
Overview
C++ links/resources.
TO DO:
Constant expressions (const
and constexpr
) (10.4)
Implicit type conversion (10.5)
nothrow
forms of new
and delete
(11.2.4)
initializer lists
Links
General links:
Comparing C and C++:
New features in C++11
move semantics
variadic templates
rvalue references
forwarding references
initializer lists
static assertions
auto
lambda expressions
decltype
template aliases
nullptr
strongly-typed enums
attributes
namespaces
throw/exceptions
Miscellany
using {} for initialization instead of =
“auto” type deduction from initializer, “auto b = true”
“constexpr” as long as expression really is a constant (eventually)
declared size of array must be constant expression
range-for-statement (for any sequence of elements)
int v[] = {1,2,3,4,5};
for (auto x : v)
for (auto x : {1,2,3,4,5})
for (auto& x : v) { ++x; }
references in declarations
kinds of classes
Coding style
use “const” as much as possible, to qualify class methods
functions defined in a class are inlined by default
define non-member routines if they don't need access to the class
Internal C++ links
Books
Parsers/static code checkers/beautifiers
C++ Style Guides