gpt4 book ai didi

C++ 标识符

转载 作者:太空狗 更新时间:2023-10-29 19:44:13 27 4
gpt4 key购买 nike

C++ Primer 说:

The identifier we define in our programs may not contain 2 consecutive underscores, nor can identifier begin with an underscore followed immediately by an uppercase letter. In addition, identifiers be fined outside of a function may not begin with an underscore

一切都很好,但是

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

请问我错过了什么?

最佳答案

过马路而不注意双向交通并不能保证您会被公共(public)汽车碾过,但这仍然是一个坏主意。

有一天它不会工作......

关于C++ 标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12021495/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com