简体   繁体   中英

What Windows C++ IDEs support the new C++0X standard?

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)?

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM