- Joined
- 5/2/06
- Messages
- 12,165
- Points
- 273
The C++11 standard offers many useful new features. This page focuses specifically and only on those features that make C++11 really feel like a new language compared to C++98, because:
http://herbsutter.com/elements-of-modern-c-style/
- They change the styles and idioms you’ll use when writing C++ code, often including the way you’ll design C++ libraries. For example, you’ll see more smart pointer parameters and return values, and functions that return big objects by value.
- They will be used so pervasively that you’ll probably see them in most code examples. For example, virtually every five-line modern C++ code example will say “auto” somewhere.
http://herbsutter.com/elements-of-modern-c-style/