首页 > 编程语言 > 详细

C++ 实验五

时间:2019-06-01 00:23:34      阅读:93      评论:0      收藏:0      [点我收藏+]
技术分享图片
#include<iostream>
#include<string>
#include"MachinePets.h"
#include"PetCats.h"
#include"PetDogs.h"
using namespace std;

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;
}
main.cpp
技术分享图片
#include"MachinePets.h"
#include<string>
using namespace std;

MachinePets :: MachinePets(const string s):nickname(s){
    }
  string MachinePets :: getNickname( ) {
      return nickname;
  }
MachinePets.cpp
技术分享图片
#ifndef MACHINEPETS_H
#define MACHINEPETS_H
#include <string>
using namespace std;

class MachinePets {
   public:
      MachinePets(const string s);
      string getNickname();
      virtual string talk() = 0;
private:
    string nickname;

};

#endif
MachinePets.h
技术分享图片
#include "MachinePets.h"
#include"PetCats.h"
#include<string>
using namespace std;

PetCats ::PetCats(const string s) : MachinePets(s) {
}
string PetCats ::talk() {
    return "miao wu~";
}
PetCats.cpp
技术分享图片
#ifndef PETCATS_H
#define PETCATS_H
#include"MachinePets.h"
#include<iostream>
#include <string>
using namespace std;

class PetCats :public MachinePets {
public:
    PetCats(const string s);
    string talk();
private:
    string catname;
};

#endif
PetCats.h
技术分享图片
#include"MachinePets.h"
#include"PetDogs.h"
#include<string>
using namespace std;

PetDogs::PetDogs(const string s) :MachinePets(s) {
}
string PetDogs::talk() {
    return "wang wang~";
}
PetDogs.cpp
技术分享图片
#ifndef PETDOGS_H
#define PETDOGS_H
#include"MachinePets.h"
#include<iostream>
#include <string>
using namespace std;

class PetDogs :public MachinePets {
public:
        PetDogs(const string s);
        string talk();
private:
    string dogname;

};

#endif
PetDogs.h

技术分享图片

C++ 实验五

原文:https://www.cnblogs.com/lyc1103/p/10958083.html

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