首页 > 其他 > 详细

实验五

时间:2019-06-03 16:05:41      阅读:90      评论:0      收藏:0      [点我收藏+]
#ifndef PETDOGS_H
#define PETDOGS_H
#include<string>
using namespace std;
#include"MachinePets.h"
class PetDogs:public MachinePets{
public:
    PetDogs(const string s);
    string talk();
};
#endif
#ifndef PETCATS_H
#define PETCATS_H
#include<string>
using namespace std;
#include"MachinePets.h"
class PetCats:public MachinePets{
public:
    PetCats(const string s);
    string talk();
};
#endif
#ifndef MACHINEPETS_H
#define MACHINEPETS_H
#include<string>
using namespace std;
class MachinePets{
private:
    string nickname;
public:
    MachinePets(const string s);
    virtual string talk()=0;
    string getNickname()const;
};
#endif
#include "MachinePets.h"
#include<string>
using namespace std;
MachinePets::MachinePets(const string s):nickname(s){
}
string MachinePets::getNickname()const{
    return nickname;
}
#include"PetCats.h"
#include<string>
using namespace std;
PetCats::PetCats(const string s):MachinePets(s){
}
string PetCats::talk(){
    return "miao wu~~";
}
#include"PetDogs.h"
#include<string>
using namespace std;
PetDogs::PetDogs(const string s):MachinePets(s){
}
string PetDogs::talk(){
    return "wang wang~~";
}
#include<iostream>
#include<string>
using namespace std;
#include"MachinePets.h"
#include"PetCats.h"
#include"PetDogs.h"
void play(MachinePets *p){
    cout<<p->getNickname()<<" says "<<p->talk()<<endl;
}

int main() {
PetCats cat("miku");
PetDogs dog("da huang");
play(&cat); // 按照play()形参,传递参数
play(&dog); // 按照play()形参,传递参数
system("pause");
return 0;
}

结果截图:技术分享图片

 

实验五

原文:https://www.cnblogs.com/cjj1/p/10967941.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!