标签: c++ class constructor
是否可以使用构造函数的类成员我将其定义为参数?我的意思是:
class jeje { int b; public: jeje(jeje a); }
感谢。
答案 0 :(得分:0)
如果要克隆对象,则不能在cpp中编写这样的代码。
class jeje { int b; public: jeje(const jeje &a); }