Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

RTTI

$
0
0

首先举个运行时类型识别的例子:

// RTTI.cpp - a demonstration of RTTI in C++
#include <typeinfo.h>//与RTTI相关
#include <iostream.h>
#include <string.h>

class graphicImage
{
protected:
    char name[80];

public:
    graphicImage()
    {
        strcpy(name,"graphicImage");
    }

    virtual void display()
    {
        cout << "Display a generic image." << endl;
    }
	
    char* getName()
    {
        return name;
    }
};
//----------------------------------------------------------------
class GIFimage : public graphicImage
{
public:
    GIFimage()
    {
        strcpy(name,"GIFimage");
    }
	
    void display()
    {
        cout << "Display a GIF file." << endl;
    }
};

class PICTimage : public graphicImage
{
public:
    PICTimage()
    {
        strcpy(name,"PICTimage");
    }
	
    void display()
    {
        cout << "Display a PICT file." << endl;
    }
};
//----------------------------------------------------------------
void processFile(graphicImage *type)
{
    if (typeid(GIFimage) == typeid(*type))//与RTTI相关
    {
        ((GIFimage *)type)->display();
    }
    else if (typeid(PICTimage) == typeid(*type))//与RTTI相关
    {
        ((PICTimage *)type)->display();
    }
    else
        cout << "Unknown type! " << (typeid(*type)).name() << endl;
}

void main()
{
    graphicImage *gImage = new GIFimage();
    graphicImage *pImage = new PICTimage();
	
    processFile(gImage);
    processFile(pImage);
}
上边的例子与RTTI有关的地方有三处,都用红色标记出来了。

使用RTTI需要具备以下条件:

1、编译时需要用 /GR 选项(/GR的意思是enable C++ RTTI)

2、载入typeinfo.h头文件。

3、使用 typeid 运算子。(typeid 的参数可以是类名称,也可以是对象指针,返回一个type_info&)

备注:VC++4.0和Borland C++ 5.0以上的编译器版本均支持RTTI功能。虽然VC++自4.0版本起已经支持RTTI,但MFC4.x并未使用编译器的能力完成其对RTTI的支持。MFC有自己一套沿用已久的办法,因为MFC比RTTI更悠久。(MFC是通过DECLARE_DYNAMIC,IMPLEMENT_DYNAMIC两个宏,外加一个非常神秘的类CRuntimeClass)

作者:windows_nt 发表于2013-3-17 23:24:41 原文链接
阅读:33 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>