沐沐Mnn 2019-04-27 23:54 采纳率: 72.7%
浏览 565
已采纳

程序设计实习期中:多态,求解答

#include <iostream>
using namespace std;

class Base {
public:
   virtual Base& fun() { cout << "base fun" << endl; return *this; }
   virtual Base& foo() { cout << "base foo" << endl; return *this; }
};

class Derived: public Base {
public:
   Base& fun() { cout << "derived fun" << endl; return *this; }
   Base& foo() { cout << "derived foo" << endl; return *this; }
};

Base& foo();
Base& fun();
// 在此处补充你的代码
int main() {
   foo().fun().foo();
   fun().foo().fun();
   return 0;
}

输入:

输出:
derived foo
derived fun
derived foo
base fun
base foo
base fun

求解答补充代码,谢谢

  • 写回答

1条回答 默认 最新

  • threenewbee 2019-04-28 09:28
    关注
    // Q758999.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    #include <iostream>
    using namespace std;
    
    class Base {
    public:
       virtual Base& fun() { cout << "base fun" << endl; return *this; }
       virtual Base& foo() { cout << "base foo" << endl; return *this; }
    };
    
    class Derived: public Base {
    public:
       Base& fun() { cout << "derived fun" << endl; return *this; }
       Base& foo() { cout << "derived foo" << endl; return *this; }
    };
    
    Base& foo();
    Base& fun();
    
    // 在此处补充你的代码
    Base& foo()
    {
        Derived * d = new Derived();
        d->foo();
        return *d;
    }
    
    Base& fun()
    {
        Base * b = new Base();
        b->fun();
        return *b;
    }
    
    int main() {
       foo().fun().foo();
       fun().foo().fun();
       return 0;
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下