我有一个类A。在此类中,它包含一个指向另一个A的指针。
class A
{
A* sub = NULL;
};
我想要一个空的构造函数,该构造函数默认将此指针设置为NULL
,而另一个构造函数则传递一个指针/引用。第二个构造函数会将参数复制到new A()
对象中,然后将sub从参数转移到自身。
现在上课:
class A
{
A* sub = NULL
A(A* source)
{
this->sub = new A(*source);//copy the source 'A'
// we now have a copy of "source" and all of its children
// but to prevent the "source" from deleting our new
// children (destructor deletes children recursively),
// "source"s children are disconnected from "source"
source->sub = NULL;
// this invalidates sub, but that is desired for my class
}
}
到目前为止,这还没有问题。相反,问题是我希望将“ source”变量用作参考。现在这是一个问题,因为这会使构造函数具有副本构造函数的签名。
是否有一种方法可以告诉编译器不应将其视为副本构造函数?如果可能的话,甚至应该这样做吗?