您的位置:首页 > 编程语言 > C语言/C++

C++虚函数(8) - RTTI(Run-time type information)

2015-05-26 00:46 197 查看
C++中, 只有当类中包含至少一个虚函数时,RTTI(Run-time type information)才生效。
编译器会将RTTI保存在vtable中。

例如, dynamic_cast会使用RTTI,下面程序会编译失败。因为类B中没有虚函数。

#include<iostream>

class B { };
class D: public B {};

int main()
{
B *b = new D;
D *d = dynamic_cast<D*>(b);
if(d != NULL)
std::cout<<"works";
else
std::cout<<"cannot cast B* to D*";
return 0;
}
编译器会报错:

“cannot dynamic_cast `b’ (of type `class B*’) to type `class D*’ (source type is not polymorphic) ”

给类B添加一个虚函数后,工作正常。

#include<iostream>
class B { virtual void fun() {} };
class D: public B { };

int main()
{
B *b = new D;
D *d = dynamic_cast<D*>(b);
if(d != NULL)
std::cout<<"works";
else
std::cout<<"cannot cast B* to D*";
return 0;
}
输出:

works
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: