6

看看这段 C++ 代码:

class Foo
{
    int a;

    public: Foo(int b): a(a) {}
};

显然,开发人员打算ab而不是a自己进行初始化,这是一个很难发现的错误。

Clang++ 会警告这个可能的错误,而 GCC 不会,即使启用了额外的警告:

$ clang++ -c init.cpp 
init.cpp:5:27: warning: field is uninitialized when used here [-Wuninitialized]
    public: Foo(int b): a(a) {}
                        ^

$ g++ -Wall -Wuninitialized -Winit-self -c init.cpp 
$

是否有机会为 g++ 启用相同的输出?

4

1 回答 1

8

使用更新的 gcc :-) 对我来说似乎工作正常:

stieber@gatekeeper:~$ g++ -Wall -Wuninitialized -Winit-self -c Test.cpp
Test.cpp: In constructor ‘Foo::Foo(int)’:
Test.cpp:5:9: warning: ‘Foo::a’ is initialized with itself [-Wuninitialized]

stieber@gatekeeper:~$ gcc --version
gcc (Debian 4.7.1-2) 4.7.1
于 2012-08-19T11:28:10.910 回答