What's your favorite C++0x feature? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T01:13:59Zhttp://stackoverflow.com/feeds/question/137812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature19What's your favorite C++0x feature?coppro2008-09-26T04:43:18Z2009-05-29T02:12:04Z
<p>As many of us know (and many, many more don't), C++ is currently undergoing final drafting for the next revision of the International Standard, expected to be published in about 2 years. Drafts and papers are currently available from the <a href="http://open-std.org/JTC1/SC22/WG21/" rel="nofollow">committee website</a>. All sorts of new features are being added, the biggest being concepts and lambdas. There is a very comprehensive <a href="http://en.wikipedia.org/wiki/C++0x" rel="nofollow">Wikipedia article</a> with many of the new features. GCC 4.3 and later implement <a href="http://gcc.gnu.org/projects/cxx0x.html" rel="nofollow">some C++0x features</a>.</p>
<p>As far as new features go, I really like type traits (and the appropriate concepts), but my definite leader is variadic templates. Until 0x, long template lists have involved Boost Preprocessor usually, and are very unpleasant to write. This makes things a lot easier and allows C++0x templates to be treated like a perfectly functional language using variadic templates. I've already written some very cool code with them already, and I can't wait to use them more often!</p>
<p>So what features are you most eagerly anticipating?</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137820#13782030Answer by Mark Cidade for What's your favorite C++0x feature?Mark Cidade2008-09-26T04:47:13Z2008-09-26T04:47:13Z<p><strong>auto</strong> keyword for variable type inferencing</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137835#13783512Answer by graham.reeds for What's your favorite C++0x feature?graham.reeds2008-09-26T04:52:10Z2008-09-26T04:52:10Z<p>Threads and atomics.</p>
<p>With multicore processors now the norm C++0x should of been C++07.</p>
<p>G.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137854#13785418Answer by Chris Charabaruk for What's your favorite C++0x feature?Chris Charabaruk2008-09-26T05:00:30Z2008-09-26T05:00:30Z<p>Lambdas and initializer lists.</p>
<p>Also, the changes to make it easier to eventually bring C++ into a garbage collected model, those seem pretty interesting. Perhaps C++1x will actually bring in garbage collection, but 0x/10 just set things up for the eventuality.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137857#1378574Answer by TraumaPony for What's your favorite C++0x feature?TraumaPony2008-09-26T05:01:27Z2008-09-26T05:01:27Z<p>Closures for me.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137858#1378583Answer by Andrew Stein for What's your favorite C++0x feature?Andrew Stein2008-09-26T05:01:42Z2008-09-26T05:01:42Z<p>auto keyword</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137861#1378613Answer by computinglife for What's your favorite C++0x feature?computinglife2008-09-26T05:03:00Z2008-09-26T05:03:00Z<p>unicode, multithreading, hash_tables, smart pointers and regular expressions. </p>
<p>ps : Wonder why they just cant do a gr8 code review and accept all the boost and tr1 libs into the standards and make life easier for everyone. All they would then have to solve is agreeing on a working optional garbage collection model.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137865#13786512Answer by Robert Gould for What's your favorite C++0x feature?Robert Gould2008-09-26T05:04:52Z2008-09-26T05:04:52Z<p>I want Rvalues. </p>
<p>All the other new features are stuff that we could easily live without(alas features). However the lack of Rvalues in C++ so far has caused hundreds of template library authors to have to "hack" around the broken Rvalue issue.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137873#1378738Answer by Greg Rogers for What's your favorite C++0x feature?Greg Rogers2008-09-26T05:08:09Z2008-09-26T05:08:09Z<p>Hands down concepts for me. But initializer lists, lambdas, and variadic templates are a close second.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137888#1378887Answer by saratv for What's your favorite C++0x feature?saratv2008-09-26T05:16:53Z2008-09-26T05:16:53Z<ol>
<li><p>It has to be the incorporation of some of the Boost libraries (shared_ptr<> and bind top the list)</p></li>
<li><p>Control over template instatntiation should finally solve the issue of the enormous compile times and make it actually feasible to use modern template code in large projects.</p></li>
<li><p>Template typedefs</p></li>
</ol>
<p>Lots of other small but important things, but they do matter in production code.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137890#1378903Answer by yesraaj for What's your favorite C++0x feature?yesraaj2008-09-26T05:18:23Z2008-09-26T05:33:20Z<p><strong>Lambdas</strong> and <strong>Concepts</strong></p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137902#1379027Answer by kervin for What's your favorite C++0x feature?kervin2008-09-26T05:25:33Z2008-09-26T05:25:33Z<p>I can't decide between <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Null_pointer" rel="nofollow">Null Pointer Type</a>, <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Tuple_types" rel="nofollow">Tuple Types</a>, or <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Regular_expressions" rel="nofollow">Regex</a>. 'Foreach' is up there too. 'Smart Pointers' goes without saying... :-)</p>
<p>Basically, I'm really looking forward to the update.</p>
<p>Personally I think heavy use of the null pointer type is going to catch a lot of bugs. Tuples are great for dealing with relational data. Lots of cool stuff.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137973#13797313Answer by Eclipse for What's your favorite C++0x feature?Eclipse2008-09-26T06:00:44Z2009-01-13T21:35:30Z<p>Variadic templates! (Which combined with r-value references gives us perfect forwarding!) </p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/140598#1405982Answer by DrPizza for What's your favorite C++0x feature?DrPizza2008-09-26T16:38:28Z2008-09-26T16:38:28Z<p>The syntax going from bad to worse.</p>
<p>Variadic templates and lambdas are nice, though the syntax of both is unfortunately pretty objectionable.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/141846#1418462Answer by Niklas for What's your favorite C++0x feature?Niklas2008-09-26T20:41:08Z2008-09-26T20:41:08Z<p>Smart pointers. It really makes a world of difference not having to explicitly memory-manage heap-allocated objects.</p>
<p>Obviously you still need to "know what you're doing", but in my experience it has decreased the number of memory-related bugs at least one order of magnitude in software I've worked with.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/147711#1477114Answer by Michael Burr for What's your favorite C++0x feature?Michael Burr2008-09-29T06:30:55Z2008-09-29T06:30:55Z<p>It's not big, but I'm loving the idea of a true <strong>null_ptr</strong>. Should have been a keyword right from the git-go.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/237819#2378193Answer by Motti for What's your favorite C++0x feature?Motti2008-10-26T10:09:20Z2008-10-26T10:09:20Z<p>I like <code>constexpr</code> especially in conjunction with variadic templates and user defined literals we can finally have binary literals and lots of other goodies.</p>
<pre><code>obj.bitmask |= 00001010B;
</code></pre>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/248472#2484725Answer by Roddy for What's your favorite C++0x feature?Roddy2008-10-29T21:24:52Z2008-10-29T21:24:52Z<p><a href="http://en.wikipedia.org/wiki/C++0x#Strongly_typed_enumerations" rel="nofollow">Strongly Typed enums</a> get my vote. Pascal has only had these for around 40 years, so it's good to see C++ finally catching up.</p>
<p>However, the publication of the standard is really a non-event. What's much more important is when the features you want to use are actually fully and reliably supported with real-world toolchains. <a href="http://www.ddj.com/cpp/184403774" rel="nofollow">There are folk that seem to actually enjoy writing standards-compliant code that fails to compile on any known compiler.</a> Good luck to them.</p>
http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/924113#9241130Answer by Jace Jung for What's your favorite C++0x feature?Jace Jung2009-05-29T02:12:04Z2009-05-29T02:12:04Z<p>REGEX!! and parallel programming librarys though I don't know the features of them all yet.</p>