2

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&)

このコードを修正するにはどうすればよいですか?

4

2 に答える 2

7

初期化リストを使用します。

class L2
{
public:
  L2(int m) : in(m), out(m) //add this  
  {
  }

private:
  L1 in ; 
  L1 out;

};
于 2012-07-23T14:42:23.537 に答える
2

コンストラクター初期化リストを使用します。例:

L2(int m) : in(m), out(m) { }

初期化を使用する必要がある場合は、割り当てを使用しないでください。

于 2012-07-23T14:43:16.157 に答える