写点什么

C++ 多态案例(三)- 电脑组装

作者:CtrlX
  • 2022 年 8 月 22 日
    山东
  • 本文字数:1496 字

    阅读完需:约 5 分钟

C++多态案例(三)-电脑组装

多态案例三-电脑组装

案例描述:


电脑主要组成部件为 CPU(用于计算),显卡(用于显示),内存条(用于存储)


将每个零件封装出抽象基类,并且提供不同的厂商生产不同的零件,例如 Intel 厂商和 Lenovo 厂商


创建电脑类提供让电脑工作的函数,并且调用每个零件工作的接口


测试时组装三台不同的电脑进行工作



示例:


#include<iostream>using namespace std;
//抽象CPU类class CPU{public: //抽象的计算函数 virtual void calculate() = 0;};
//抽象显卡类class VideoCard{public: //抽象的显示函数 virtual void display() = 0;};
//抽象内存条类class Memory{public: //抽象的存储函数 virtual void storage() = 0;};
//电脑类class Computer{public: Computer(CPU * cpu, VideoCard * vc, Memory * mem) { m_cpu = cpu; m_vc = vc; m_mem = mem; }
//提供工作的函数 void work() { //让零件工作起来,调用接口 m_cpu->calculate();
m_vc->display();
m_mem->storage(); }
//提供析构函数 释放3个电脑零件 ~Computer() {
//释放CPU零件 if (m_cpu != NULL) { delete m_cpu; m_cpu = NULL; }
//释放显卡零件 if (m_vc != NULL) { delete m_vc; m_vc = NULL; }
//释放内存条零件 if (m_mem != NULL) { delete m_mem; m_mem = NULL; } }
private:
CPU * m_cpu; //CPU的零件指针 VideoCard * m_vc; //显卡零件指针 Memory * m_mem; //内存条零件指针};
//具体厂商//Intel厂商class IntelCPU :public CPU{public: virtual void calculate() { cout << "Intel的CPU开始计算了!" << endl; }};
class IntelVideoCard :public VideoCard{public: virtual void display() { cout << "Intel的显卡开始显示了!" << endl; }};
class IntelMemory :public Memory{public: virtual void storage() { cout << "Intel的内存条开始存储了!" << endl; }};
//Lenovo厂商class LenovoCPU :public CPU{public: virtual void calculate() { cout << "Lenovo的CPU开始计算了!" << endl; }};
class LenovoVideoCard :public VideoCard{public: virtual void display() { cout << "Lenovo的显卡开始显示了!" << endl; }};
class LenovoMemory :public Memory{public: virtual void storage() { cout << "Lenovo的内存条开始存储了!" << endl; }};

void test01(){ //第一台电脑零件 CPU * intelCpu = new IntelCPU; VideoCard * intelCard = new IntelVideoCard; Memory * intelMem = new IntelMemory;
cout << "第一台电脑开始工作:" << endl; //创建第一台电脑 Computer * computer1 = new Computer(intelCpu, intelCard, intelMem); computer1->work(); delete computer1;
cout << "-----------------------" << endl; cout << "第二台电脑开始工作:" << endl; //第二台电脑组装 Computer * computer2 = new Computer(new LenovoCPU, new LenovoVideoCard, new LenovoMemory);;//new出来的指针直接传到参数里。 computer2->work(); delete computer2;
cout << "-----------------------" << endl; cout << "第三台电脑开始工作:" << endl; //第三台电脑组装 Computer * computer3 = new Computer(new LenovoCPU, new IntelVideoCard, new LenovoMemory);; computer3->work(); delete computer3;
}
复制代码


发布于: 刚刚阅读数: 3
用户头像

CtrlX

关注

Pain is inevitable,suffering is optional 2022.08.01 加入

【个人网站】ctrlx.life 【联系方式】微信:gitctrlx 【软件技能】前端,C++,Python,研究网络工程,数据结构与算法。

评论

发布
暂无评论
C++多态案例(三)-电脑组装_c_CtrlX_InfoQ写作社区