当我们用“裸”指针进行类层次上的上下行转换时,可以使用dynamic_cast。当然我们也可以使用static_cast,只是dynamic_cast在进行下行转换的时候(即基类到派生类)具有类型检查功能,而static_cast没有。因此存在安全问题。
当我们使用智能指针时,如果需要进行类层次上的上下行转换时,可以使用boost::static_pointer_cast和boost::dynamic_pointer_cast。(C++11中也支持智能指针和转换,只是命名空间改成std即可)。
1. static_pointer_cast
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
using namespace std;
class CBase
{
public:
CBase() { }
virtual ~CBase() { }
void myBase()
{
cout << "CBase::myBase" << endl;
}
};
class CDerive : public CBase
{
public:
CDerive() { }
~CDerive() { }
void myDerive()
{
cout << "CDerive::myDerive" << endl;
}
};
int main(void)
{
//上行的转换(派生类到基类的转换)
boost::shared_ptr<CDerive> spDeriveUp;
boost::shared_ptr<CBase> spBaseUp;
spDeriveUp = boost