| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 631 人关注过本帖
标题:一定要使用指针吗?
取消只看楼主 加入收藏
maiiho
Rank: 1
等 级:新手上路
帖 子:94
专家分:7
注 册:2008-7-17
结帖率:50%
收藏
 问题点数:0 回复次数:3 
一定要使用指针吗?
#include<iostream.h>
class Grandam {
    public:
      virtual void introduce_self()  // 定义虚函数introduce_self()
      { cout<<"I am grandam."<<endl; }
    };
class Mother:public Grandam {
    public:
        void introduce_self()     // 重新定义虚函数introduce_self()
        { cout<<"I am mother."<<endl;}
};
class Daughter:public Mother {
    public:
        void introduce_self()     // 重新定义虚函数introduce_self()
        { cout<<"I am daughter."<<endl;}
};
void main()
{
    Grandam *ptr;
    Grandam g;
    Mother m;
Daughter d;
     ptr=&g;
     ptr->introduce_self(); //调用基类Grandam的introduce_self()
     ptr=&m;
     ptr->introduce_self(); // 调用派生类Mother的introduce_self()
     ptr=&d;
     ptr->introduce_self();    //调用派生类

                                               //  Daughter的introduce_self()
}
搜索更多相关主题的帖子: 指针 
2008-10-25 22:14
maiiho
Rank: 1
等 级:新手上路
帖 子:94
专家分:7
注 册:2008-7-17
收藏
得分:0 
虽然使用对象名和点运算符的方式也可以调用虚函数,但只有
通过基类指针访问虚函数才能获得运行是的多态。

答案我找到了.
2008-10-25 22:17
maiiho
Rank: 1
等 级:新手上路
帖 子:94
专家分:7
注 册:2008-7-17
收藏
得分:0 
以上所述的多态的意思,是在程序运行的时候?
2008-10-25 22:18
maiiho
Rank: 1
等 级:新手上路
帖 子:94
专家分:7
注 册:2008-7-17
收藏
得分:0 
多态是什么意思?
不是一条指令多个行为的意思么?
2008-10-26 00:06
快速回复:一定要使用指针吗?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022555 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved