第13周项目1-动物这样叫(3抽象类)

/*
*copyright (c)2015,烟台大学计算机学院
*All rights reserved
*文件名称:project.cpp
*作者:孙春红
*完成日期:2015年6月3日
*版本号:v1.0
*
*问题描述:每一个Animal的派生类都有一个“名字”数据成员,
这个成员设置为基类Animal的成员更好。改造上面的程序,将“名字”
成员作为抽象类Animal数据成员被各派生类使用。
*输入描述:略。
*程序输出:略。
*/
#include "iostream"
#include<string>
using namespace std;
class Animal
{
    protected:
    string name;
public:
    Animal(string nam):name(nam){}
    virtual void cry() = 0;
};
class Mouse : public Animal
{
private:
    char sex;
public:
    Mouse(string nam, char s):Animal(nam),sex(s) {}
    virtual void cry()
    {
cout<<"我叫"<<name<<",是一只"<<((sex=='m')?"男":"女")<<"老鼠,我的叫声是:吱吱吱!"<<endl;
    }
};

class Cat : public Animal
{
public:
   Cat(string nam):Animal(nam) {}
    virtual void cry()
    {
       cout<<"我叫"<<name<<",是一只猫,我的叫声是:喵喵喵!"<<endl;
    }
};

class Dog : public Animal
{
public:
    Dog(string nam):Animal(nam) {}
    virtual void cry()
    {
        cout<<"我叫"<<name<<",是一条狗,我的叫声是:汪汪汪!"<<endl;
    }
};

class Giraffe : public Animal
{
private:
    char sex;
public:
    Giraffe(string nam,char s):Animal(nam), sex(s) {}
    virtual void cry()
    {
        cout<<"我叫"<<name<<",是"<<((sex=='m')?"男":"女")<<"长颈鹿,我的脖子太长,发不出声音来!"<<endl;
    }
};
int main( ){
    Animal *p;
    Mouse m1("Jerry",'m');
    p=&m1;
    p->cry();
    Mouse m2("Jemmy",'f');
    p=&m2;
    p->cry();
    Cat c1("Tom");
    p=&c1;
    p->cry();
    Dog d1("Droopy");
    p=&d1;
    p->cry();
    Giraffe g1("Gill",'m');
    p=&g1;
    p->cry();
    return 0;
}


运行结果:

知识点总结:

抽象基类的定义与纯虚数函数的使用。

猜你喜欢

转载自blog.csdn.net/yantaidaxuecjj/article/details/46345777