C++ 拷贝控制和继承

The synthesized operations copy, assign, or destroy the base-class part of the object along with the members of the derived part.

 

Whether a class needs to define the copy-control members depends entirely on the class' own direct members.A baseclass might define its own copy control while the derived uses the synthesize dversions or vice versa.

 

Classes with pointer members often need to define their own copy control to manage these members.

 

Note: If a derived class explicitly definesits own copy constructor or assignment operator, that definition completely overrides the defaults.The copy constructor and assignment operator for inherited classes are responsible for copying or assigning their base class components as well as the members in the class itself.

 

 

Defininga Derived Copy Constructor

If a derived class defines its own copyconstructor, that copy constructor usually should explicitly use the base-classcopy constructor to initialize the base part of the object:

class Base { /* ... */ };

class Derived: public Base {

public:

// Base::Base(const Base&) not invoked auto matically

Derived(const Derived& d):

Base(d) /* other member initialization*/ {/*... */ }

};

 

Derived-ClassAssignment Operator

As usual, the assignment operator is similar to the copy constructor:If the derived class defines its ownassignment operator, then that operator must assign the base part explicitly:

// Base::operator=(const Base&) notinvoked automatically

Derived &Derived::operator=(constDerived &rhs)

{

if (this != &rhs) {

Base::operator=(rhs); // assigns the basepart

// do whatever needed to clean up the oldvalue in the derived part

// assign the members from the derived

}

return *this;

}


Theassignment operator must, as always, guard against self-assignment. Assuming the leftand right-hand operands differ, then we call theBaseclass assignment operator to assign the base-class portion. That operator might bedefined by the class or it might be the synthesized assignment operator. It doesn't matterwecan call it directly. The base-class operator will free the old value in the base part of theleft-hand operand and will assign the new values from rhs. Once that operator finishes, we continuedoing whatever is needed to assign the members in the derived class.

 

Derived-Class Destructor

The destructor works differently from thecopy constructor and assignment operator: The derived destructor is never responsible for destroying the members of its base objects. The compiler always implicitly invokes the destructor for the basepart of a derived object. Each destructor does only what is necessary to clean up its own members:

class Derived: public Base {

public:

// Base::~Base invoked automatically

~Derived() { /* do what it takes to clean upderived members*/ }

}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值