设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1288|回复: 1
打印 上一主题 下一主题

C++中实现多态时怎样判断一个父类指针指向哪一个子类对象?

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:54:41 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
C++中实现多态时怎样判断一个父类指针指向哪一个子类对象?
就像Java中Instanceof()方法,我用typeid做不出来

#include "Person.h"
#include "Student.h"
#include <iostream>
#include <typeinfo>
using namespace std;

int main()
{
    Person* p = new Student(1, "小李", MALE, 21, 3, 1);
    p->print();
    if(typeid(p) == typeid(Student))
    {
        cout << "Yes" << endl;
    }
    else
    {
        cout << "No" << endl;
        cout << typeid(new Student(1, "小李", MALE, 21, 3, 1)).name() << endl;
    }
    delete p;

    return 0;
}
2#
发表于 2009-11-4 00:54:42 | 只看该作者
我是不是没说清楚,就是Person是一个基类,Student类是一个子类,(还有Teacher类也是Person的子类)。
定义一个Person* 指针,有多态性可以指向Student类对象,也可以指向Teacher类对象,现在我要想知道当前的
Person* 到底指向那个子类,在C++里有没有什么办法呢?(java中好像有个instanceof方法)
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 23:50 , Processed in 0.115925 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表