Where can I learn more about C++0x? [closed]

我是研究僧i 提交于 2019-11-27 02:33:09
Ozgur Ozcitak

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

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.

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

Steve Townsend

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!