Question

What are excellent C++ IDE options that support the new standard c++0x (windows os friendly) besides visual .net 2010 (the beta is way too slow/clunky)?

Was it helpful?

Solution

While not supporting the full C++0x standard, much of the TR1 stuff is included in the SP1 update to Visual Studio 2008. The SP1 update includes the feature pack that was released last year.

OTHER TIPS

Now, two years after the question was asked, VisualStudio 2010 supports the following core language features.

  1. Lambda functions
  2. Rvalue references (move semantics and perfect forwarding).
  3. type inference (auto and decltype)
  4. nullptr
  5. Trailing return type specification auto f() -> int
  6. static_assert

Your problem is that there are few compilers that support the C++0x spec. Specifically, g++ does not come near yet, and there won't be any FOSS IDEs that fully support C++0X until g++ does.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top