当前位置: 首页 > article >正文

C++_day6

思维导图:

2试编程
封装一个动物的基类,类中有私有成员: 姓名,颜色,指针成员年纪
再封装一个狗这样类,共有继承于动物类,自己拓展的私有成员有:指针成员:腿的个数(整型 int count),共有成员函数:会叫: void speak()
要求:分别完成基类和派生类中的:构造函数、析构函数、拷贝构造函数、拷贝赋值函数
eg
Dog d1;
Dog d2(.....);
Dog d3(d2);
d1 = d3,

#include <iostream>

using namespace std;

class Animal
{
private:
    string name;
    string color;
    int *age;
protected:

public:
    Animal()
    {
        cout << "Animal::无参构造函数" << endl;
    }
    Animal(string name,string color,int age):name(name),color(color),age(new int(age))
    {
        cout << "Animal::有参构造函数" << endl;
    }
    ~Animal()
    {
        cout << "Animal::析构函数" << endl;
        delete age;
    }
    Animal(const Animal &other):name(other.name),color(other.color),age(new int(*other.age))
    {
        cout << "Animal::拷贝构造函数" << endl;
    }
    Animal &operator=(const Animal &other)
    {
        if(this != &other)
        {
            name = other.name;
            color = other.color;
            age = new int(*other.age);
        }
        cout << "Animal::拷贝赋值函数" << endl;
        return *this;
    }
    void show()
    {
        cout << name << " " << color << " " << *age << " ";
    }
};
class Dog:public Animal
{
private:
    int *count;
public:
    void speak()
    {
        cout << "汪汪汪~" << endl;
    }
    Dog()
    {
        cout << "Dog::无参构造函数" << endl;
    }
    Dog(string name,string color,int age,int count):Animal(name,color,age),count(new int(count))
    {
        cout << "Dog::有参构造函数" << endl;
    }
    ~Dog()
    {
        cout << "Dog::析构函数" << endl;
        delete count;
    }
    Dog(const Dog &other):Animal(other),count(new int(*other.count))
    {
        cout << "Dog::拷贝构造函数" << endl;
    }
    Dog &operator=(const Dog &other)
    {
        if(this != &other)
        {
            Animal::operator=(other);
            count = new int(*other.count);
        }
        cout << "Dog::拷贝赋值函数" << endl;
        return *this;
    }
    void show()
    {
        Animal::show();
        cout << *count << endl;
    }
};
int main()
{
    Dog d1;
    Dog d2("小黑","黑色",5,4);
    d2.show();
    Dog d3(d2);
    d3.show();
    d1=d3;
    d1.show();
    return 0;
}

运行结果:

3.编程题
以下是一个简单的比喻,将多态概念与生活中的实际情况相联系:
比喻:动物园的讲解员和动物表演
想象一下你去了一家动物园,看到了许多不同种类的动物,如狮子、大象、猴子等。现在,动物园里有一位讲解员,他会为每种动物表演做简单的介绍。
在这个场景中,我们可以将动物比作是不同的类,而每种动物表演则是类中的函数。而讲解员则是一个基类,他可以根据每种动物 的特点和表演,进行相应的介绍。
具体过程如下
定义一个基类Animal,其中有一个虚函数perform (),用于在子类中实现不同的表演行为 

 

#include <iostream>

using namespace std;

class Animal
{
private:
    string name;
    string color;
    int *age;
protected:

public:
    Animal()
    {
        cout << "Animal::无参构造函数" << endl;
    }
    Animal(string name,string color,int age):name(name),color(color),age(new int(age))
    {
        cout << "Animal::有参构造函数" << endl;
    }
    ~Animal()
    {
        cout << "Animal::析构函数" << endl;
        delete age;
    }
    Animal(const Animal &other):name(other.name),color(other.color),age(new int(*other.age))
    {
        cout << "Animal::拷贝构造函数" << endl;
    }
    Animal &operator=(const Animal &other)
    {
        if(this != &other)
        {
            name = other.name;
            color = other.color;
            age = new int(*other.age);
        }
        cout << "Animal::拷贝赋值函数" << endl;
        return *this;
    }
    virtual void perform() = 0;
    void show()
    {
        cout << name << " " << color << " " << *age << " ";
    }
};
class Elephant:public Animal
{
private:
    int *count;
public:
    void perform()
    {
        cout << "喷水  吃香蕉" << endl;
    }
    Elephant()
    {
        cout << "Elephant::无参构造函数" << endl;
    }
    Elephant(string name,string color,int age,int count):Animal(name,color,age),count(new int(count))
    {
        cout << "Elephant::有参构造函数" << endl;
    }
    ~Elephant()
    {
        cout << "Elephant::析构函数" << endl;
        delete count;
    }
    Elephant(const Elephant &other):Animal(other),count(new int(*other.count))
    {
        cout << "Elephant::拷贝构造函数" << endl;
    }
    Elephant &operator=(const Elephant &other)
    {
        if(this != &other)
        {
            Animal::operator=(other);
            count = new int(*other.count);
        }
        cout << "Dog::拷贝赋值函数" << endl;
        return *this;
    }
    void show()
    {
        Animal::show();
        cout << *count << endl;
    }
};
class Lion:public Animal
{
private:
    int *count;
public:
    void perform()
    {
        cout << "钻火圈" << endl;
    }
    Lion()
    {
        cout << "Lion::无参构造函数" << endl;
    }
    Lion(string name,string color,int age,int count):Animal(name,color,age),count(new int(count))
    {
        cout << "Lion::有参构造函数" << endl;
    }
    ~Lion()
    {
        cout << "Lion::析构函数" << endl;
        delete count;
    }
    Lion(const Lion &other):Animal(other),count(new int(*other.count))
    {
        cout << "Lion::拷贝构造函数" << endl;
    }
    Lion &operator=(const Lion &other)
    {
        if(this != &other)
        {
            Animal::operator=(other);
            count = new int(*other.count);
        }
        cout << "Dog::拷贝赋值函数" << endl;
        return *this;
    }
    void show()
    {
        Animal::show();
        cout << *count << endl;
    }
};
int main()
{
    Elephant e1("大象","五彩",6,4);
    Lion l1("狮子","棕黄色",4,4);
    e1.perform();
    l1.perform();
    return 0;
}


http://www.kler.cn/a/273340.html

相关文章:

  • 4种鼓励创业创新的方法
  • 【C++】继承的理解
  • pip install -r requirements.txt下载速度慢
  • 计算机毕业设计——ssm基于JAVA的求职招聘网站的设计与实现演示录像 2021
  • 【MIT-OS6.S081笔记1】xv6环境搭建
  • 法律文件智能识别:免费OCR平台优化数字化管理
  • Qt5.14.2 深入理解Qt多线程编程,掌握线程池架构实现高效并发
  • 【低照度图像增强系列(3)】EnlightenGAN算法详解与代码实现
  • 房产销售平台|基于Spring cloud+ Mysql+Java+ Tomcat的房产销售平台设计与实现(可运行源码+数据库+设计文档)
  • ONLYOFFICE文档8.0全新发布:私有部署、卓越安全的协同办公解决方案
  • 数字创新的引擎:探索Web3的前沿科技和商业模式
  • Hystrix的原理及应用:构建微服务容错体系的利器(一)
  • GitLab/Github从头开始配置秘钥
  • Java 学习和实践笔记(40):String类详解
  • 外包干了3个月,技术明显进步。。。。。
  • 学习Java十一天总结
  • 聚类分析 | Matlab实现基于PCA+DBO+K-means的数据聚类可视化
  • 钉钉小程序 - - - - - 如何通过一个链接打开小程序内的指定页面
  • 【OpenCV C++】找到图像中最亮的区域中心,求该区域ROI的平均亮度
  • 电话机器人语音识别用哪家更好精准度更高。
  • HUAWEI Pocket 2外屏实时查看App动态,小小窗口大便捷
  • Spring项目问题:登录中用户名或密码为空问题
  • CentOS7 操作firewall防火墙
  • 对IO流原理及、分类及IO模型的一个大概认识【Java基础题】
  • 算法第三十天-矩阵中移动的最大次数
  • Android 性能优化——APP启动优化