作为类构造函数中的参数的类的c ++成员

时间:2017-07-27 01:56:37

标签: c++ class constructor

是否可以使用构造函数的类成员我将其定义为参数?我的意思是:

class jeje
{
  int b;

public:
  jeje(jeje a);
}

感谢。

1 个答案:

答案 0 :(得分:0)

如果要克隆对象,则不能在cpp中编写这样的代码。

class jeje
{
  int b;

public:
  jeje(const jeje &a);
}