Where can I learn more about C++0x?

C++C++11Reference Manual

C++ Problem Overview


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?

C++ Solutions


Solution 1 - C++

Solution 2 - C++

Solution 3 - C++

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++

Solution 4 - C++

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.

Solution 5 - C++

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

Solution 6 - C++

There is a ton of stuff on this very site - some of the posts include very informative discussion. I would point you to Google but it's going to be more efficient to search in C++0x tagged posts here imo.

Here's a good one to start with, which includes indirection to Stroustrup's own summary. Scott Meyers has presentation materials on the topic here.

Check up on your favourite compiler's support for the new version. Microsoft VC10 support is summarized here. GCC info can be found here.

Official state of the standard for the language is available here. Evolution of the language is in many places tied to ongoing work in Boost. See here for some info on that.

Honestly my preference these days is to look here for 99% of needed info rather than resort to a book.

Solution 7 - C++

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionyesraajView Question on Stackoverflow
Solution 1 - C++Ozgur OzcitakView Answer on Stackoverflow
Solution 2 - C++yesraajView Answer on Stackoverflow
Solution 3 - C++TG.View Answer on Stackoverflow
Solution 4 - C++SumaView Answer on Stackoverflow
Solution 5 - C++gnobalView Answer on Stackoverflow
Solution 6 - C++Steve TownsendView Answer on Stackoverflow
Solution 7 - C++bhadraView Answer on Stackoverflow