比较感兴趣的几个VC2012/VC2013特性

关于VC2012和VC2013新特性的详细介绍:

  • C++11 Features (Modern C++) .
  • What's New for Visual C++ Developers in VS2013 Preview .

比较喜欢的几个关键字: auto, nullptr, static_assert.

并且支持 C++11 的 lambdas 运算, 还有 C99 的 __func__ 宏.

比较关注的标准库有: <array>, <atomic>, <thread>, <filesystem>, <regex> 等.

VC2013只是比VC2012多了 Raw string literals 支持.
网络库, unicode 等都是不支持.

因此决定从VC2010升级到VC2012.

你可能感兴趣的:(C++,C++11,vc013,vc2012)