A preview version of Visual Studio 11 (the next version after VS2010) is now available.

Does anyone know what new C++11 features it supports? (I'm not in a position to try it out at the moment).

link|improve this question

11  
And I'm left disappointed once more. Now to figure out how to use GCC/GDB more fluently... – GManNickG Sep 14 '11 at 20:11
2  
GMan: I think their uptake on new features is pretty astonishing, certainly in view of where they're coming from (think VC 6.0 and shudder)... Sure, GCC's support is astonishing, but there are a lot of other places it is lacking too... – rubenvb Oct 6 '11 at 15:53
4  
@rubenvn: Just out of curiosity, in what places is GCC lacking? – HighCommander4 Oct 6 '11 at 23:11
feedback

6 Answers

up vote 22 down vote accepted

It's worth noting that Visual Studio 2010 already had quite a bit of early C++11 support. So to summarize what is already linked to in other answers, here is what is new in Visual Studio 11 that was not part of Visual Studio 2010:

link|improve this answer
8  
That's actually quite disappointing... I was hoping for variadic templates and uniform initialization, which GCC has been supporting for two and half and one and a half years, respectively... – HighCommander4 Sep 14 '11 at 20:18
@High uniform initialization isn't even on their list of features in the spec (doesn't even show up with a "No"). Is there perhaps another name for that? – Joel Coehoorn Sep 14 '11 at 20:54
4  
@Joel: Uniform initialization is a superset of "initializer lists", which gets a No. – Potatoswatter Sep 14 '11 at 23:51
1  
I really love my type safe print and printf functions. I was really hoping that 2011 would finally add variadic templates. Missing variadics is also effecting emplace_back and make_shared. Is there something about cl that makes it particularly hard to implement variadics? – deft_code Sep 15 '11 at 20:14
5  
Herb Sutter said in his second Build session (channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-835T) that they tried to do variadic templates ... tried and tried and they are not done in time for this version. This affected what other things they could do, as well. – Kate Gregory Sep 18 '11 at 22:24
show 1 more comment
feedback

Here is the list of feature of the new visual studio version and here is the list of what all compilers support

link|improve this answer
2  
Not to be too picky, but your second link shows x0 support not 11 support. – mydogisbox Sep 14 '11 at 19:46
You are right, but it still provide a good overview of all the compilers and what they implemented. – Drahakar Sep 14 '11 at 19:49
Just thought it would be good to be clear. I agree its useful. – mydogisbox Sep 14 '11 at 19:54
1  
Hopefully, it is a wiki, somebody informed might want to update it ^.^ – Drahakar Sep 17 '11 at 21:07
1  
Well, it seems like it has been recently updated (joy to the world...) :) – Drahakar Nov 28 '11 at 21:54
show 2 more comments
feedback

There is a list there. What strikes me the most is the features which are still missing:

  • They said they would implement variadic templates as a priority and they didn't.
  • We will still have to declare move constructors by hand for many classes, since there is no delegating constructors.
  • Inheriting constructors aren't present, and this would really be needed for some code
  • No uniform initialization, in particular no initializer lists. This sucks when you have used them with g++.
  • Still no correct thread local storage. So you're stuck with boost::thread_specific_ptr for a while.

All the other features which are yet missing are mainly stuff you can live without. What I list here is just what nags me everyday when working with VS10. It's just so irritating that they didn't work on the compiler at all.

EDIT: I shall also add that emplace_back (one great feature for the standard library containers) isn't correctly implemented.

link|improve this answer
2  
They did make variadic templates a priority. That's why, when variadic templates didn't get done in time, the other language features didn't get done either. (Except, as it turns out, for the skunkworks range-for.) – Kate Gregory Feb 22 at 21:00
They must have some old codgers working for Microsoft's Compiler Division. – unixman83 Apr 19 at 15:55
? I really can't live without Non-static data member initializers. – Trass3r May 24 at 23:44
feedback

During GoingNative in Feb 2012, STL announced that range-for will be in VS11 starting with the beta, which is expected Feb 29th. A recording of the talk is available. "The Reveal" is at the one-hour 38 minute mark.

link|improve this answer
feedback

Try this video by Herb Sutter. This fellow dont need introduction!!!

http://channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-835T

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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