标签:使用 for sp c r linux bs c++ window
如果是Windows平台的话,只有vs2012才开始支持C++11的新特性。
如果是linux平台的话,只有GNU 4.7才开始支持。
对于Linux,要想使用C++11的新特性,典型的就是for(auto c: str)这种for范围语句,就必须在g++编译的时候添加 -std=c++11选项,如:
g++ -std=c++11 -o auto auto.cpp ;
标签:使用 for sp c r linux bs c++ window
原文地址:http://www.cnblogs.com/wanyuanchun/p/4006161.html