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

C++_day6:2024/3/18

作业1:编程题:

以下是一个简单的比喻,将多态概念与生活中的实际情况相联系:

比喻:动物园的讲解员和动物表演

想象一下你去了一家动物园,看到了许多不同种类的动物,如狮子、大象、猴子等。现在,动物园里有一位讲解员,他会为每种动物表演做简单的介绍。

在这个场景中,我们可以将动物比作是不同的类,而每种动物表演则是类中的函数。而讲解员则是一个基类,他可以根据每种动物的特点和表演,进行相应的介绍。

具体过程如下: 

定义一个基类 Animal,其中有一个虛函数perform(),用于在子类中实现不同的表演行为。

代码:

#include <iostream>using namespace std;//封装一个 动物 的基类
class Animal
{
private:string type;    //动物种类string color;   //动物颜色
public://无参构造函数Animal() {}//有参构造函数Animal(string type, string color):type(type), color(color){cout << "Animal::有参构造函数" << endl;}//表演行为virtual void perform(){cout << "杂技表演" << endl;}//虚析构函数:正确引导子类释放自己的空间virtual ~Animal(){cout << "Animal::析构函数" << endl;}
};class Dog:public Animal
{
private:string name;    //狗的名字int age;        //狗的年龄
public://无参构造函数Dog() {}//有参构造函数Dog(string type, string color, string name, int age):Animal(type, color), name(name), age(age){cout << "Dog::有参构造函数" << endl;}//表演行为void perform(){cout << " Dog::摇尾巴 " << endl;}//析构函数~Dog(){cout << "Dog::析构函数" << endl;}
};
//封装一个 猫 这样的类   公有继承 动物 这个基类
class Cat:public Animal
{
private:string name;    //猫的名字int age;        //猫的年龄
public://无参构造函数Cat() {}//有参构造函数Cat(string type, string color, string name, int age):Animal(type, color), name(name), age(age){cout << "Cat::有参构造函数" << endl;}//表演行为void perform(){cout << " Cat::抓老鼠 " << endl;}//析构函数~Cat(){cout << "Cat::析构函数" << endl;}
};int main()
{//用狗这样的类实例化一个 d1 对象,并自动调用构造函数初始化Dog d1("狗", "黄色", "大黄", 5);//定义一个父类的指针,指向子类Animal *p = &d1;cout << "--------狗的行为--------" << endl;p->perform();cout << "-----------------------" << endl;//用猫这样的类实例化一个 c1 对象,并自动调用构造函数初始化Cat c1("猫", "白色", "大白", 5);p = &c1;cout << "--------猫的行为--------" << endl;p->perform();cout << "-----------------------" << endl;return 0;
}

效果图:

作业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;         //动物的年龄(指针成员)
public://无参构造Animal(){}//有参构造Animal(string name, string color, int age):name(name), color(color), age(new int(age)){cout << "父类::有参构造函数" << endl;}//拷贝构造函数Animal(const Animal &other):name(other.name), color(other.color), age(new int(*other.age)){cout << "父类::拷贝构造函数" << endl;}//拷贝赋值函数Animal &operator=(const Animal &other){if(this != &other){name = other.name;color = other.color;age = new int(*other.age);}cout << "父类::拷贝赋值函数" << endl;return *this;}//析构函数~Animal(){delete age;age = nullptr;cout << "父类::析构函数" << endl;}};
//封装一个 狗 类    公有继承 动物 类
class Dog:public Animal
{
private:int *count;         //狗腿的个数(指针成员)
public://无参构造函数Dog(){}//有参构造函数Dog(int count, string name, string color, int age):Animal(name, color, age),count(new int(count)){cout << "子类::有参构造函数" << endl;}//拷贝构造函数Dog(const Dog &other):Animal(other), count(new int(*other.count)){cout << "子类::拷贝构造函数" << endl;}//拷贝赋值函数Dog &operator=(const Dog &other){if(this != &other){Animal::operator=(other);count = new int(*other.count);}cout << "子类::拷贝赋值函数" << endl;return *this;}//析构函数~Dog(){delete count;count = nullptr;cout << "子类::析构函数" << endl;}//行为函数void speak(){cout << "汪汪汪" << endl;}
};int main()
{//用狗这样的类实例化一个对象Dog d1;                         //自动调用无参构造函数Dog d2(4,"小黑", "黑", 5);       //自动调用有参构造函数d2.speak();Dog d3(d2);                     //自动调用拷贝构造函数d1 = d3;                        //自动调用拷贝赋值函数return 0;
}

效果图:

作业3:思维导图

http://www.lryc.cn/news/321083.html

相关文章:

  • 汇编语言和IBM的关系
  • 堆(数据结构)
  • 医药工厂5G智能制造数字孪生可视化平台,推进医药企业数字化转型
  • C语言学习--八种排序算法
  • Infineon_TC264智能车代码初探及C语言深度学习(二)
  • 第十三届蓝桥杯(C/C++ 大学B组)
  • 数据结构从入门到精通——排序的概念及运用
  • react面试题总结
  • 5_springboot_shiro_jwt_多端认证鉴权_禁用Cookie
  • 条形码申请指南:外地人如何成功注册香港条形码
  • Covalent Network借助大规模的历史Web3数据集,推动人工智能发展
  • test测试类-变量学习
  • 【DL经典回顾】激活函数大汇总(二十七)(Bent Identity附代码和详细公式)
  • element-plus el-table表格默认选中某一行
  • Vue+SpringBoot打造民宿预定管理系统
  • 基于单片机的模糊PID炉温控制系统设计
  • 深入浅出落地应用分析:AI数字人「微软小冰」
  • 【早鸟优惠|高录用|EI稳定检索】2024年虚拟现实、图像和信号处理国际学术会议(ICVISP 2024)诚邀投稿/参会!
  • CPU设计实战—异常处理指令
  • Elasticsearch(13) match_phrase的使用
  • 通过路由器监控,优化网络效率
  • 使用canvas实现图纸标记及回显
  • 鸿蒙-自定义组件的生命周期
  • 【Linux】自动化构建工具-make/Makefile
  • week07day03(power bi dax公式 零售数据业务分析)
  • rembg报错onnxruntime_providers_tensorrt.dll
  • 精酿啤酒:一口啤酒,一份享受
  • git报: “fatal: detected dubious ownership in repository“
  • 代码随想录算法训练营第27天|93.复原IP地址、78.子集、90.子集二
  • Java微服务轻松部署服务器