gcc はメンバー変数の初期化の順序a
とb
クラス C について警告する必要がありますか? 基本的に、オブジェクト b は初期化され、そのコンストラクターはオブジェクト A の前に呼び出されます。これは、初期化されていない をb
使用することを意味しますa
。
#include <iostream>
using namespace std;
class A
{
private:
int x;
public:
A() : x(10) { cout << __func__ << endl; }
friend class B;
};
class B
{
public:
B(const A& a) { cout << "B: a.x = " << a.x << endl; }
};
class C
{
private:
//Note that because b is declared before a it is initialized before a
//which means b's constructor is executed before a.
B b;
A a;
public:
C() : b(a) { cout << __func__ << endl; }
};
int main(int argc, char* argv[])
{
C c;
}
gcc からの出力:
$ g++ -Wall -c ConsInit.cpp
$