我今天写了一些代码,得到了一个奇怪的编译错误,这似乎是由于初始化成员变量的顺序与声明的顺序不同造成的。
例子:
class Test {
int a;
int b;
public:
Test() : b(1), a(2) {
}
};
int main() {
Test test;
return 0;
}
然后,如果我编译它-Werror -Wall
:
$ g++ -Werror -Wall test.cpp
test.cpp: In constructor ‘Test::Test()’:
test.cpp:3:9: error: ‘Test::b’ will be initialized after [-Werror=reorder]
test.cpp:2:9: error: ‘int Test::a’ [-Werror=reorder]
test.cpp:6:5: error: when initialized here [-Werror=reorder]
cc1plus: all warnings being treated as errors
我意识到这-Wall
是明确要求 GCC 过分警告,但我认为所有这些都是有原因的。那么,初始化成员变量的顺序有什么关系呢?