浅析C++构造函数虚拟化
虚拟构造函数
当你有一个指针或引用,但是不知道其指向对象的真实类型是什么时,你可以调用虚拟函数来完成特定类型(type-specific)对象的行为。仅当你还没拥有一个对象但是你确切地知道想要对象的类型时,你才会调用构造函数。那么虚拟构造函数又从何谈起呢?
例如假设你编写一个程序,用来进行新闻报道的工作,一条新闻报道由文字或图片组成。你可以这样管理它们:
class nlcomponent { //用于 newsletter components 的抽象基类 public: ... //包含至少一个纯虚函数 }; class textblock: public nlcomponent { public: ... // 不包含纯虚函数 }; class graphic: public nlcomponent { public: ... // 不包含纯虚函数 }; class newsletter { // 一个 newsletter 对象由nlcomponent 对象的链表组成 public: newsletter(istream& str); ... private: list<nlcomponent*> components; };
在newsletter中使用的list类是一个标准模板类(stl)。对象newletter不运行时就会存储在磁盘上。为了能够通过位于磁盘的替代物来建立newsletter对象,让newletter的构造函数带有istream参数是一种很方便的方法。当构造函数需要一些核心的数据结构时,它就从流中读取信息。此构造函数的伪代码是这样的:
newsletter::newsletter(istream& str) { while (str) { 从str读取下一个component对象; 把对象加入到newsletter的 components 对象的链表中去; } }
或者,把这种技巧用于另一个独立出来的函数叫做readcomponent,如下所示:
class newsletter { public: ... private: // 为建立下一个nlcomponent对象从str读取数据, // 建立component 并返回一个指针。 static nlcomponent * readcomponent(istream& str); ... }; newsletter::newsletter(istream& str) { while (str) { // 把readcomponent返回的指针添加到components链表的最后, // "push_back" 一个链表的成员函数,用来在链表最后进行插入操作。 components.push_back(readcomponent(str)); } }
考虑一下readcomponent所做的工作。它根据所读取的数据建立了一个新对象,或是textblock或是graphic。因为它能建立新对象,它的行为与构造函数相似,而且因为它能建立不同类型的对象,我们称它为虚拟构造函数。虚拟构造函数是指能够根据输入给它的数据的不同而建立不同类型的对象。
虚拟拷贝构造函数
还有一种特殊种类的虚拟构造函数――虚拟拷贝构造函数――也有着广泛的用途。虚拟拷贝构造函数能返回一个指针,指向调用该函数的对象的新拷贝。因为这种行为特性,虚拟拷贝构造函数的名字一般都是copyself,cloneself或者是象下面这样就叫做clone。很少会有函数能以这么直接的方式实现它:
class nlcomponent { public: // declaration of virtual copy constructor virtual nlcomponent * clone() const = 0; ... }; class textblock: public nlcomponent { public: virtual textblock * clone() const // virtual copy constructor { return new textblock(*this); } ... }; class graphic: public nlcomponent { public: virtual graphic * clone() const // virtual copy constructor { return new graphic(*this); } ... };
类的虚拟拷贝构造函数只是调用它们真正的拷贝构造函数。因此”拷贝”的含义与真正的拷贝构造函数相同。如果真正的拷贝构造函数只做了简单的拷贝,那么虚拟拷贝构造函数也做简单的拷贝。如果真正的拷贝构造函数做了全面的拷贝,那么虚拟拷贝构造函数也做全面的拷贝。
注意上述代码的实现利用了最近才被采纳的较宽松的虚拟函数返回值类型规则。被派生类重定义的虚拟函数不用必须与基类的虚拟函数具有一样的返回类型。如果函数的返回类型是一个指向基类的指针(或一个引用),那么派生类的函数可以返回一个指向基类的派生类的指针(或引用)。这不是c++的类型检查上的漏洞,它使得又可能声明象虚拟构造函数这样的函数。这就是为什么textblock的clone函数能够返回textblock*和graphic的clone能够返回graphic*的原因,即使nlcompo-nent的clone返回值类型为nlcomponent*。
在nlcomponent中的虚拟拷贝构造函数能让实现newletter的(正常的)拷贝构造函数变得很容易:
class newsletter { public: newsletter(const newsletter& rhs); ... private: list<nlcomponent*> components; }; newsletter::newsletter(const newsletter& rhs) { // 遍历整个rhs链表,使用每个元素的虚拟拷贝构造函数 // 把元素拷贝进这个对象的component链表。 // 有关下面代码如何运行的详细情况,请参见条款35。 for (list<nlcomponent*>::const_iterator it = rhs.components.begin(); it != rhs.components.end(); ++it) { // "it" 指向rhs.components的当前元素,调用元素的clone函数, // 得到该元素的一个拷贝,并把该拷贝放到 //这个对象的component链表的尾端。 components.push_back((*it)->clone()); } }
遍历被拷贝的newsletter对象中的整个component链表,调用链表内每个元素对象的虚拟构造函数。我们在这里需要一个虚拟构造函数,因为链表中包含指向nlcomponent对象的指针,但是我们知道其实每一个指针不是指向textblock对象就是指向graphic对象。无论它指向谁,我们都想进行正确的拷贝操作,虚拟构造函数能够为我们做到这点。
以上内容基本都来自《more effective c++》。
以上就是浅析c++构造函数虚拟化的详细内容,更多关于c++构造函数虚拟化的资料请关注其它相关文章!