dynamic_cast

dynamic_cast 动态类型转换,必须有虚函数。

#include "stdafx.h"
#include <iostream>
using namespace std;

class Basic
{
public:
virtual void funOfBasic(){cout<<"this is the basic's fun"<<endl;}
};

class Derived:public Basic
{
public:
virtual void funOfDerived(){cout<<"this is the Derived's fun"<<endl;}
};

int _tmain(int argc, _TCHAR* argv[])
{
Basic *ptr1 = new Basic;
Basic *ptr2 = new Derived;

//只能向上转换,转换失败p1 = =NULL
Derived *p1 = dynamic_cast<Derived*>(ptr1);

//ptr2虽然是Basic类型指针但是指向Derived类型对象
//所以可以转换
Derived *p2 = dynamic_cast<Derived*>(ptr2);

if(p1)
{
cout<<"this is p1"<<endl;
p1->funOfBasic();
p1->funOfDerived();
}
if(p2)
{
cout<<"this is p2"<<endl;
p2->funOfBasic();
p2->funOfDerived();
}


return 0;
}

 虽然介绍的比较粗糙,但是依然希望能对路过的人有所帮助^_^

转载于:https://www.cnblogs.com/kunkka123/archive/2012/06/02/2531881.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值