2つのクラスL1とL2があり、L2の定義にはメンバーオブジェクトとしてL1が含まれています。L1とL2には、それぞれ独自のコンストラクターがあります。明らかに、L2をインスタンス化するとき、そのコンストラクターはL1のコンストラクターを呼び出す必要があります。しかし、私はこれを行う方法がわかりません。これは(失敗した)試行とそれに伴うコンパイラエラーです。
class L1
{
public:
L1(int n)
{ arr1 = new int[n] ;
arr2 = new int[n]; }
private:
int* arr1 ;
int* arr2 ;
};
class L2
{
public:
L2(int m)
{ in = L1(m) ;
out = L1(m) ; }
private:
L1 in ;
L1 out;
};
int main(int argc, char *argv[])
{
L2 myL2(5) ;
return 0;
}
コンパイルエラーは次のとおりです。
[~/Desktop]$ g++ -g -Wall test.cpp (07-23 10:34)
test.cpp: In constructor ‘L2::L2(int)’:
test.cpp:21:5: error: no matching function for call to ‘L1::L1()’
test.cpp:8:3: note: candidates are: L1::L1(int)
test.cpp:6:1: note: L1::L1(const L1&)
test.cpp:21:5: error: no matching function for call to ‘L1::L1()’
test.cpp:8:3: note: candidates are: L1::L1(int)
test.cpp:6:1: note: L1::L1(const L1&)
このコードを修正するにはどうすればよいですか?