鱼C论坛

 找回密码
 立即注册
查看: 664|回复: 4

[已解决]小白求助 关于抽象类的一点疑惑 大佬请过目

[复制链接]
发表于 2020-4-11 19:18:40 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include "iostream"
using std::endl;
using std::cout;
using std::cin;

class Interface1
{
public:
        virtual int add(int a, int b) = 0;
        virtual void print() = 0;
};

class Interface2
{
public:
        virtual int mult(int a, int b) = 0;
        virtual void print() = 0;
};

class Parent
{
private:
        int a;
public:
        int getA()
        {
                a = 0;
                return a;
        }
};

class Child :public Parent, public Interface1, public Interface2
{
public:
        virtual int add(int a, int b)
        {
                cout << "Child:add()\n";
                return a + b;
        }
public:                                   
        virtual void print()  //问题:前面类 Interface1 和 Interface2中有两个print函数,可是虚函数继承后  Child只写了 一个 print函数 请问这是怎么回事?
        {                          //问题:这个print函数是类Interface1的 还是Interface2的呀? 
                cout << "Child:print()\n";
        }
public:
        virtual int mult(int a, int b)
        {
                cout << "Child:mult()\n";
                return a * b;
        }
};
void main()
{
        Child c1;

        Interface1* if1 = new Child;
        if1->add(11,22);
        //if1->print();
        
        Interface2* if2 = new Child;
        if2->mult(11, 22);
        //if2->print();
        system("pause");
}
最佳答案
2020-4-11 19:24:38
是它自身的,子类只要有实现就都是自身的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-11 19:24:38 | 显示全部楼层    本楼为最佳答案   
是它自身的,子类只要有实现就都是自身的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-11 19:31:33 | 显示全部楼层
BngThea 发表于 2020-4-11 19:24
是它自身的,子类只要有实现就都是自身的

哦哦 知道了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-11 19:32:14 | 显示全部楼层
BngThea 发表于 2020-4-11 19:24
是它自身的,子类只要有实现就都是自身的

那为啥两个类中都有print函数 而子类中只有一个呢?因为virtual吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-11 19:57:32 | 显示全部楼层
只需要一个啊,难道写两个?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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