赞
踩
让g++支持C++11标准有几种方法:
#pragma GCC diagnostic error "-std=c++11"
g++ -std=c++11 -o test test.cpp
alias g++11="g++ -std=c++11"