1. 程式人生 > >gcc對C++11的支援

gcc對C++11的支援

1 2 3 4 5 6 7 8 9 10 11 12 /* file : main.cpp */ #include <stdio.h> int main() { int a[5] = { 1, 2, 2, 5, 1 }; forint i:a ) { printf"%d\n", a[i] ); } return 0; }

那麼g++ 就會提示以下錯誤:

1 2 3 main.cpp: In function ‘int main()’: main.cpp:5:13: error: range-based ‘
for’ loops are not allowed in C++98 mode forint i:a ) {

意思是指在C++98中不支援此迴圈方式,因為這是C++11新增的迴圈方式。

那麼如果一定要編譯呢?

通過命令man g++可以得知以下方法:

g++ -g -Wall -std=c++11 main.cpp

除了g++ , gcc 也可以類似方法支援C11

gcc -g -Wall -std=c11 main.cpp

如果不想每次寫這個-std=C++11這個選項該怎麼辦呢?

  方法1:寫Makefile

  方法2:取別名 :alias g++11="g++ -std=c++11"