Where can I learn more about C++0x? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T20:12:27Zhttp://stackoverflow.com/feeds/question/200237http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x21Where can I learn more about C++0x?yesraaj2008-10-14T07:19:11Z2009-07-23T20:00:17Z
<p>I would like to learn more about C++0x - are there any good links to get me started or has anyone written a good book on the subject?</p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200246#2002466Answer by Suma for Where can I learn more about C++0x?Suma2008-10-14T07:25:39Z2008-10-14T07:25:39Z<p>Wikipedia article seems like an excellent starting point: <a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">C++0x</a></p>
<p>It provides a good summary with brief examples and is updated regularly to match latest additions.</p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200254#20025424Answer by Ozgur Ozcitak for Where can I learn more about C++0x?Ozgur Ozcitak2008-10-14T07:28:29Z2009-07-23T20:00:17Z<ul>
<li>ISO C++ committee's <a href="http://www.open-std.org/jtc1/sc22/wg21/" rel="nofollow">web site</a>.</li>
<li>Bjarne Stroustrup's <a href="http://www.research.att.com/~bs" rel="nofollow">web site</a>.
<ul>
<li>Especially his <a href="http://www.research.att.com/~bs/C++0xFAQ.html" rel="nofollow">C++0x FAQ</a></li>
<li>Also his <a href="http://www.research.att.com/~bs/rules.pdf" rel="nofollow">article (pdf)</a> in C++ User's Journal</li>
</ul></li>
<li>The <a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">wikipedia article</a> is very comprehensive.</li>
<li>The GCC C++ compiler has <a href="http://gcc.gnu.org/projects/cxx0x.html" rel="nofollow">experimental support for C++0x</a>, with the <code>-std=c++0x</code> compiler switch.</li>
</ul>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200369#20036916Answer by TG for Where can I learn more about C++0x?TG2008-10-14T08:21:12Z2008-10-29T05:12:50Z<p><a href="http://herbsutter.wordpress.com" rel="nofollow">Herb Sutter</a>'s blog, He posts new developments in C++0x and links to detailed references</p>
<p><a href="http://www.research.att.com/~bs/" rel="nofollow">Bjarne Stroustrup</a>'s Website</p>
<p>Both are ISO-C++ standards committee members. Herb Sutter will posts an update on each meeting that he attends.</p>
<p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2798.pdf" rel="nofollow">Working Draft, Standard for Programming
Language C++</a></p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200400#2004004Answer by gnobal for Where can I learn more about C++0x?gnobal2008-10-14T08:40:15Z2008-10-14T08:40:15Z<p>Here are two videos on the subject. They are a bit old, but still very relevant:
New Features in the Next C++ Standard ( <a href="http://www.youtube.com/watch?v=ZAG5txfYnW4" rel="nofollow">http://www.youtube.com/watch?v=ZAG5txfYnW4</a> ) and <a href="http://video.google.com/videoplay?docid=3528799355371049884" rel="nofollow">Advanced Topics in Programming Languages Series: C++ Threads</a></p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/200425#20042516Answer by yesraaj for Where can I learn more about C++0x?yesraaj2008-10-14T08:49:33Z2009-03-18T17:52:06Z<h2>Articles on</h2>
<p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=254" rel="nofollow">Lambda Expressions</a>,</p>
<p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=276" rel="nofollow">The Type Traits Library</a>,</p>
<p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=310" rel="nofollow">The rvalue Reference</a>,</p>
<p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=313" rel="nofollow">Concepts</a>,</p>
<p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=396" rel="nofollow">Variadic Templates</a>,</p>
<p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=239" rel="nofollow">shared_ptr</a></p>
<p><a href="http://www.ddj.com/cpp/185300414" rel="nofollow">Regular Expressions</a></p>
<p><a href="http://www.ddj.com/cpp/184401974" rel="nofollow">Tuples</a></p>
<p><a href="http://www.informit.com/guides/printerfriendly.aspx?g=cplusplus&seqNum=414" rel="nofollow">Multi Threading</a></p>
<h2>General Discussion</h2>
<p><a href="http://www.petebecker.com/newlib1.html" rel="nofollow">The C/C++ Users Journal</a>,</p>
<p><a href="http://www.petebecker.com/newlib.html" rel="nofollow">The New C++</a>,</p>
<p><a href="http://www.artima.com/cppsource/cpp0x.html" rel="nofollow">Article</a></p>
<h2>Videos</h2>
<p><a href="http://video.google.com/videoplay?docid=2768126766555555011" rel="nofollow">Google tech talk</a> </p>
<h2>overview of various features</h2>
<p><a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">overview at wikipedia</a></p>
<h2>Library</h2>
<p><a href="http://www.boost.org/" rel="nofollow">Boost</a></p>
http://stackoverflow.com/questions/200237/where-can-i-learn-more-about-c0x/659321#6593210Answer by lsalamon for Where can I learn more about C++0x?lsalamon2009-03-18T17:29:44Z2009-03-18T18:13:21Z<p>More info here :<br>
<a href="http://blogs.msdn.com/vcblog/archive/2008/10/28/lambdas-auto-and-static-assert-c-0x-features-in-vc10-part-1.aspx" rel="nofollow">Lambdas, auto, and static_assert: C++0x Features in VC10, Part 1</a><br>
<a href="http://blogs.msdn.com/vcblog/" rel="nofollow">Visual C++ Team Blog</a><br>
<a href="http://www.informit.com/guides/content.aspx?g=cplusplus&seqNum=426" rel="nofollow">Danny Kalev - New Standard Library Algorithms</a><br></p>