• 第13周项目1-动物所谓的


    下面是一个给定的基类Animal声明和main()性能。

    class Animal
    {
    public:
      virtual void cry()
        {
          cout<<"不知哪种动物,让我怎样学叫?"<<endl;
        }
    };
    int main( ){
        Animal *p;
        p = new Animal();
        p->cry(); 
        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;
    }

    1、依据给出的main()函数和执行结果的提示。设计出相关的各个类,注意观察执行结果,提取出每一个类中须要的数据成员,并匹配上须要的成员函数。

    /*
    * Copyright (c) 2015,烟台大学计算机学院
    * All right reserved.
    * 作者:邵帅
    * 文件:Demo.cpp
    * 完毕时间:2015年06月07日
    * 版本:v1.0
    */
    #include <iostream>
    using namespace std;
    class Animal
    {
    public:
      virtual void cry()
        {
          cout<<"不知哪种动物。让我怎样学叫?"<<endl;
        }
    };
    class Mouse:public Animal
    {
    public:
        Mouse(string n,char s):name(n),sex(s){}
        virtual void cry()
        {
            cout<<"我叫"<<name<<",是一仅仅"<<((sex=='f')?"女":"男")<<"老鼠。我的叫声是:吱吱吱!

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

    "<<endl; } private: string name; }; class Dog:public Animal { public: Dog(string n):name(n){} virtual void cry() { cout<<"我叫"<<name<<",是一仅仅狗,我的叫声是:汪汪汪。"<<endl; } private: string name; }; class Giraffe:public Animal { public: Giraffe(string n,char s):name(n),sex(s){} virtual void cry() { cout<<"我叫"<<name<<",是一仅仅"<<((sex=='f')?"女":"男")<<"长颈鹿,我的脖子太长,可是发不出来声。"<<endl; } private: string name; char sex; }; int main( ){ Animal *p; p = new Animal(); p->cry(); 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; }



    2、显然。Animal设计为抽象类更合适,Animal不须要可以实例化,是专门作基类使用的。改造程序。使Animal设计为抽象类,这时main()函数中p = new Animal();将出错。将此行删除。

    /*
    * Copyright (c) 2015,烟台大学计算机学院
    * All right reserved.
    * 作者:邵帅
    * 文件:Demo.cpp
    * 完毕时间:2015年06月07日
    * 版本:v1.0
    */
    #include <iostream>
    #include <string>
    using namespace std;
    class Animal
    {
    public:
      virtual void cry()=0;
    };
    class Mouse:public Animal
    {
    public:
        Mouse(string n,char s):name(n),sex(s){}
        virtual void cry()
        {
            cout<<"我叫"<<name<<",是一仅仅"<<((sex=='f')?"女":"男")<<"老鼠。我的叫声是:吱吱吱!

    "<<endl; } private: string name; char sex; }; class Cat:public Animal { public: Cat(string n):name(n){} virtual void cry() { cout<<"我叫"<<name<<",是一仅仅猫,我的叫声是:喵喵喵!"<<endl; } private: string name; }; class Dog:public Animal { public: Dog(string n):name(n){} virtual void cry() { cout<<"我叫"<<name<<",是一仅仅狗,我的叫声是:汪汪汪!

    "<<endl; } private: string name; }; class Giraffe:public Animal { public: Giraffe(string n,char s):name(n),sex(s){} virtual void cry() { cout<<"我叫"<<name<<",是一仅仅"<<((sex=='f')?"女":"男")<<"长颈鹿。我的脖子太长,可是发不出来声。"<<endl; } private: string name; char sex; }; int main( ){ Animal *p; //p = new Animal(); //p->cry(); 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; }



    3、每个Animal的派生类都有一个“名字”数据成员,这个成员设置为基类Animal的成员更好。

    改造上面的程序,将“名字”成员作为抽象类Animal数据成员被各派生类使用。

    /*
    * Copyright (c) 2015,烟台大学计算机学院
    * All right reserved.
    * 作者:邵帅
    * 文件:Demo.cpp
    * 完毕时间:2015年06月07日
    * 版本:v1.0
    */
    #include <iostream>
    #include <string>
    using namespace std;
    class Animal
    {
    public:
        Animal(string n):name(n){}
        virtual void cry()=0;
    protected:
        string name;
    };
    class Mouse:public Animal
    {
    public:
        Mouse(string n,char s):Animal(n),sex(s) {}
        virtual void cry()
        {
            cout<<"我叫"<<name<<",是一仅仅"<<((sex=='f')?

    "女":"男")<<"老鼠,我的叫声是:吱吱吱!

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

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

    "<<endl; } }; class Giraffe:public Animal { public: Giraffe(string n,char s):Animal(n),sex(s) {} virtual void cry() { cout<<"我叫"<<name<<",是一仅仅"<<((sex=='f')?"女":"男")<<"长颈鹿,我的脖子太长,可是发不出来声!"<<endl; } private: char sex; }; int main( ) { Animal *p; //p = new Animal(); //p->cry(); 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; }


    @ Mayuko

    版权声明:本文博主原创文章,博客,未经同意不得转载。

  • 相关阅读:
    Python学习笔记(2)
    Python学习笔记(1)
    2020年5月记于博茨瓦纳
    20145208 蔡野 《网络对抗》免考项目 MSF学习
    20145208 蔡野 《网络对抗》Exp9 web安全基础实践
    20145208 蔡野 《网络对抗》Exp8 Web基础
    20145208 蔡野 《网络对抗》Exp7 网络欺诈技术防范
    20145122 《Java程序设计》课程总结
    20145122《 Java网络编程》实验五实验报告
    20145122 《Java程序设计》第十周学习总结
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/4821027.html
Copyright © 2020-2023  润新知