I would like to learn more about C++0x. What are some good references and resources? Has anyone written a good book on the subject yet?
相关问题
- Sorting 3 numbers without branching [closed]
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
- What uses more memory in c++? An 2 ints or 2 funct
相关文章
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
- What exactly do pointers store? (C++)
- Converting glm::lookat matrix to quaternion and ba
- What is the correct way to declare and use a FILE
You may refer Presentation Materials: Overview of the New C++ (C++0x) by Scott Meyers.
Wikipedia article seems like an excellent starting point: C++0x
It provides a good summary with brief examples and is updated regularly to match latest additions.
Articles on
Lambda Expressions,
The Type Traits Library,
The rvalue Reference,
Concepts,
Variadic Templates,
shared_ptr
Regular Expressions
Tuples
Multi Threading
General Discussion
The C/C++ Users Journal,
The New C++,
Article
Videos
Google tech talk
overview of various features
overview at wikipedia
Library
Boost
Here are two videos on the subject. They are a bit old, but still very relevant: New Features in the Next C++ Standard ( http://www.youtube.com/watch?v=ZAG5txfYnW4 ) and Advanced Topics in Programming Languages Series: C++ Threads
Herb Sutter's blog, He posts new developments in C++0x and links to detailed references
Bjarne Stroustrup's Website
Both are ISO-C++ standards committee members. Herb Sutter will posts an update on each meeting that he attends.
Working Draft, Standard for Programming Language C++