What's your favorite C++0x feature? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T01:13:59Z http://stackoverflow.com/feeds/question/137812 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature 19 What's your favorite C++0x feature? coppro 2008-09-26T04:43:18Z 2009-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#137820 30 Answer by Mark Cidade for What's your favorite C++0x feature? Mark Cidade 2008-09-26T04:47:13Z 2008-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#137835 12 Answer by graham.reeds for What's your favorite C++0x feature? graham.reeds 2008-09-26T04:52:10Z 2008-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#137854 18 Answer by Chris Charabaruk for What's your favorite C++0x feature? Chris Charabaruk 2008-09-26T05:00:30Z 2008-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#137857 4 Answer by TraumaPony for What's your favorite C++0x feature? TraumaPony 2008-09-26T05:01:27Z 2008-09-26T05:01:27Z <p>Closures for me.</p> http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137858#137858 3 Answer by Andrew Stein for What's your favorite C++0x feature? Andrew Stein 2008-09-26T05:01:42Z 2008-09-26T05:01:42Z <p>auto keyword</p> http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137861#137861 3 Answer by computinglife for What's your favorite C++0x feature? computinglife 2008-09-26T05:03:00Z 2008-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#137865 12 Answer by Robert Gould for What's your favorite C++0x feature? Robert Gould 2008-09-26T05:04:52Z 2008-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#137873 8 Answer by Greg Rogers for What's your favorite C++0x feature? Greg Rogers 2008-09-26T05:08:09Z 2008-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#137888 7 Answer by saratv for What's your favorite C++0x feature? saratv 2008-09-26T05:16:53Z 2008-09-26T05:16:53Z <ol> <li><p>It has to be the incorporation of some of the Boost libraries (shared_ptr&lt;> 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#137890 3 Answer by yesraaj for What's your favorite C++0x feature? yesraaj 2008-09-26T05:18:23Z 2008-09-26T05:33:20Z <p><strong>Lambdas</strong> and <strong>Concepts</strong></p> http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/137902#137902 7 Answer by kervin for What's your favorite C++0x feature? kervin 2008-09-26T05:25:33Z 2008-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#137973 13 Answer by Eclipse for What's your favorite C++0x feature? Eclipse 2008-09-26T06:00:44Z 2009-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#140598 2 Answer by DrPizza for What's your favorite C++0x feature? DrPizza 2008-09-26T16:38:28Z 2008-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#141846 2 Answer by Niklas for What's your favorite C++0x feature? Niklas 2008-09-26T20:41:08Z 2008-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#147711 4 Answer by Michael Burr for What's your favorite C++0x feature? Michael Burr 2008-09-29T06:30:55Z 2008-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#237819 3 Answer by Motti for What's your favorite C++0x feature? Motti 2008-10-26T10:09:20Z 2008-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#248472 5 Answer by Roddy for What's your favorite C++0x feature? Roddy 2008-10-29T21:24:52Z 2008-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#924113 0 Answer by Jace Jung for What's your favorite C++0x feature? Jace Jung 2009-05-29T02:12:04Z 2009-05-29T02:12:04Z <p>REGEX!! and parallel programming librarys though I don't know the features of them all yet.</p>