vote up 19 vote down star
8

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 committee website. All sorts of new features are being added, the biggest being concepts and lambdas. There is a very comprehensive Wikipedia article with many of the new features. GCC 4.3 and later implement some C++0x features.

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!

So what features are you most eagerly anticipating?

flag
It's a safe bet to call it C++09 :) – Constantin Oct 21 '08 at 17:54
Or failing that C++0a – Motti Oct 26 '08 at 11:39
Shouldn't that be C++0xa ?? :) – Steve Fallows Oct 29 '08 at 21:04

18 Answers

vote up 30 vote down check

auto keyword for variable type inferencing

link|flag
I dream about auto. When available, I will use it in every single statement. So much goodness in 4 characters. – QBziZ Sep 26 '08 at 20:33
Auto is already implemented in GCC 4.4! And it's awesome. – coppro Oct 20 '08 at 19:30
woohoo! No more guessing how many asterisks to add to the type ; ) – Mark Cidade Oct 20 '08 at 20:02
2  
Yay auto! No more "for (vector<pair<int, string> >::const_iterator i;...."! – David Thornley Jan 13 at 21:50
1  
yeah.. it's funny how the most trivial change in C++0x is the most popular. It is what we coders care about after all :) and yes it's awesome. – Iraimbilanja Mar 17 at 15:43
show 1 more comment
vote up 18 vote down

Lambdas and initializer lists.

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.

link|flag
2  
GC prevents RAII. I'd rather have smart pointers and RAII than GC. – Bernard Dec 24 at 15:55
2  
Oh no it doesn't! RAII is in Lisp, C# although a little different from C++, but C++/CLI it has destructors on GCed classes that behave identically to C++ destructors. – Earwicker Mar 26 at 21:06
vote up 13 vote down

Variadic templates! (Which combined with r-value references gives us perfect forwarding!)

link|flag
vote up 12 vote down

Threads and atomics.

With multicore processors now the norm C++0x should of been C++07.

G.

link|flag
1  
Except that it couldn't be. As an ISO standard, it cannot be revised more than once every 10 years. So October 10, 2008 is the earliest that a new standard could be set. Note that the final meeting was in September, expect ratification sooner rather than later. – Zathrus Oct 29 '08 at 21:14
vote up 12 vote down

I want Rvalues.

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.

link|flag
vote up 8 vote down

Hands down concepts for me. But initializer lists, lambdas, and variadic templates are a close second.

link|flag
3  
Too bad the committee decided not to include concepts in C++0x – davidlin Jul 20 at 0:48
vote up 7 vote down
  1. It has to be the incorporation of some of the Boost libraries (shared_ptr<> and bind top the list)

  2. 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.

  3. Template typedefs

Lots of other small but important things, but they do matter in production code.

link|flag
vote up 7 vote down

I can't decide between Null Pointer Type, Tuple Types, or Regex. 'Foreach' is up there too. 'Smart Pointers' goes without saying... :-)

Basically, I'm really looking forward to the update.

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.

link|flag
vote up 5 vote down

Strongly Typed enums get my vote. Pascal has only had these for around 40 years, so it's good to see C++ finally catching up.

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. There are folk that seem to actually enjoy writing standards-compliant code that fails to compile on any known compiler. Good luck to them.

link|flag
1  
Putting useful stuff into a standard increases the chance that it'll get into the toolchains. It's a start. – David Thornley Jan 13 at 21:52
vote up 4 vote down

Closures for me.

link|flag
vote up 4 vote down

It's not big, but I'm loving the idea of a true null_ptr. Should have been a keyword right from the git-go.

link|flag
vote up 3 vote down

auto keyword

link|flag
vote up 3 vote down

unicode, multithreading, hash_tables, smart pointers and regular expressions.

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.

link|flag
lambda/closures can't be done (efficiently) without language support. – Simon Buchan Sep 26 '08 at 5:06
I wouldn't want to force something like Quaternions, GIL or BGL on all vendors. A code review is mostly irrelevant, as the standard only describes the interface contract - which often isn't specified in boost. Boost will describe its implementation only. – MSalters Sep 26 '08 at 11:32
vote up 3 vote down

Lambdas and Concepts

link|flag
vote up 3 vote down

I like constexpr especially in conjunction with variadic templates and user defined literals we can finally have binary literals and lots of other goodies.

obj.bitmask |= 00001010B;
link|flag
You have to start your literals with _ (non-_ literals are reserved for future use for the standard). Which is a shame. – coppro Oct 26 '08 at 18:02
Are you sure about that? I had a look at the latest version (N2378) and didn't see that information. – Motti Oct 29 '08 at 21:01
Yeah. It's in the library requirements section, under program requirements. – coppro Nov 3 '08 at 20:59
vote up 2 vote down

The syntax going from bad to worse.

Variadic templates and lambdas are nice, though the syntax of both is unfortunately pretty objectionable.

link|flag
vote up 2 vote down

Smart pointers. It really makes a world of difference not having to explicitly memory-manage heap-allocated objects.

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.

link|flag
I already had smart pointers in my code, from Boost. I'm more interested in the changes that I can't do on my own. – David Thornley Jan 13 at 21:52
OK. FYI, the boost smart pointers are the basis for the C++0x smart pointers. – Niklas Jan 20 at 13:23
Also shared_ptr was standardised in TR1, so it's not actually new in C++0x. – Earwicker Mar 26 at 21:09
vote up 0 vote down

REGEX!! and parallel programming librarys though I don't know the features of them all yet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.