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 回答