C++ 入门 说:
我们在程序中定义的标识符不能包含 2 个连续的下划线,标识符也不能以下划线开头,后跟一个大写字母。另外,在函数外被罚款的标识符不能以下划线开头
一切都很好,但是
int _c = 55; // outside function starts with _
int main () {
int _A = 12; // _ followed by uppercase letter
cout << _A << endl;
int __b__ =33; // 2 consecutive __
cout << __b__ << endl;
cout << _c << endl;
}
上面的代码在 mac上编译得非常好g++ 4.7.1
,使用以下标志
g++ -pedantic -Wall -Werror -std=c++11 -O3 -funroll-loops -fprefetch-loop-arrays
请问我错过了什么?