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?
- ISO C++ committee
- Bjarne Stroustrup
- Especially his C++0x FAQ
- The Design of C++0x (pdf) from C/C++ Users Journal, May 2005
- Wikipedia's C++0x article
- G++'s experimental support for C++0x with the -std=c++0x switch
- SO's [c++0x] tag
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.
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
Articles on
General Discussion
Videos
overview of various features
Library
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.