which C++ Compiler complies with the latest C++ standard most
I have been looking for a c++ compiler that is available and complies most with the latest C++ 开发者_如何学JAVAstandard.
The latest VS2010 is good but as many said it still doesn't comply with all of the C++ standard.
you may be interested in this summary table
EDIT:
I have found the list of tables created by Scott Meyers
GCC has pretty good C++0x compliance, here is a list of the features it supports
GCC and Clang are very good ones. Visual Studio (of any year) will require special cases for complex code so it doesn't really comply with standards.
精彩评论