我在我的代码中定义了一个复制构造函数,它正在初始化正在创建的对象的数据成员。现在,如果我只需要更改几个变量的值,我正在编写一个新的复制 ctor。所以我的问题是,我可以只初始化特定的不同数据成员,而对于其他人,我可以在我的 ctor 方法中调用定义的一个 ctor,而不是再次编写相同的代码。
示例:已经存在
A::A(const A& cpy)
{
a=cpy.a;
b=cpy.b;
c=cpy.c
}
现在我想把我的 ctor 写成
A::A(const A& cpy, bool x)
{
if( x)
a=something;
else
a =cpy.a
//call first ctor for other variables (b and c)
}
谢谢鲁奇