码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 10.11作业


    多继承代码实现沙发床

    1. #include
    2. using namespace std;
    3. class Sofa {
    4. private:
    5. int h;
    6. public:
    7. Sofa() {
    8. cout << "Sofa无参构造" << endl;
    9. }
    10. Sofa(int h): h(h) {
    11. cout << "Sofa有参构造" << endl;
    12. }
    13. Sofa(const Sofa& other): h(other.h) {
    14. cout << "Sofa拷贝构造" << endl;
    15. }
    16. Sofa& operator=(const Sofa& other) {
    17. cout << "Sofa赋值拷贝" << endl;
    18. h = other.h;
    19. return *this;
    20. }
    21. ~Sofa() {
    22. cout << "Sofa析构函数" << endl;
    23. }
    24. };
    25. class Bad {
    26. private:
    27. int w;
    28. public:
    29. Bad() {
    30. cout << "Bad无参构造" << endl;
    31. }
    32. Bad(int w): w(w) {
    33. cout << "Bad有参构造" << endl;
    34. }
    35. Bad(const Bad& other): w(other.w) {
    36. cout << "Bad拷贝构造" << endl;
    37. }
    38. Bad& operator=(const Bad& other) {
    39. cout << "Bad赋值拷贝" << endl;
    40. w = other.w;
    41. return *this;
    42. }
    43. ~Bad() {
    44. cout << "Bad析构函数" << endl;
    45. }
    46. };
    47. class Sofa_Bad: public Sofa, protected Bad {
    48. private:
    49. string name;
    50. public:
    51. Sofa_Bad() {
    52. cout << "Sofa_Bad无参构造" << endl;
    53. }
    54. Sofa_Bad(string name, int h, int w): Sofa(h), Bad(w), name(name) {
    55. cout << "Sofa_Bad有参构造" << endl;
    56. }
    57. Sofa_Bad(const Sofa_Bad& other): Sofa(other), Bad(other), name(other.name) {
    58. cout << "Sofa_Bad拷贝构造" << endl;
    59. }
    60. Sofa_Bad& operator=(const Sofa_Bad& other) {
    61. Sofa::operator=(other);
    62. Bad::operator=(other);
    63. name = other.name;
    64. cout << "Sofa_Bad赋值拷贝" << endl;
    65. return *this;
    66. }
    67. ~Sofa_Bad() {
    68. cout << "Sofa_Bad析构函数" << endl;
    69. }
    70. };
    71. int main() {
    72. Sofa_Bad s1;
    73. Sofa_Bad s2("aaaa", 100, 200);
    74. Sofa_Bad s3(s2);
    75. s1 = s3;
    76. return 0;
    77. }

  • 相关阅读:
    图解MySQL逻辑备份的实现流程
    什么是深克隆,浅克隆?(案例详解)
    Java -Version的秘密
    【VMware vSAN】创建vSAN Max集群并配置挂载远程数据存储。
    SWMM排水管网水力、水质建模及在海绵城市与水环境保护中的应用
    关系数据库-postgresql-基础
    解决 Spark2.X 查询Hive分区表修改后的字段为null?
    Git分布式管理-头歌实验分支管理
    Ubuntu系统如何进行网络连接-连接电脑局域网-物联网开发-Ubuntu系统维护
    AlGaN/GaN结构的氧基数字蚀刻
  • 原文地址:https://blog.csdn.net/weixin_45904815/article/details/133776647
  • 最新文章
  • 【JVM】编译执行与解释执行的区别是什么?JVM 使用哪种方式?
    用 Hashids 优雅解决 C 端自增 ID 暴露问题
    V8引擎 精品漫游指南--Ignition篇(上) 指令 栈帧 槽位 调用约定 内存布局 基础内容
    LLVM Pass快速入门(四):代码插桩
    milkup:桌面端 markdown AI续写和即时渲染
    基于项目工程构建SBOM(软件物料清单)的研究
    鸿蒙应用开发UI基础第二节:鸿蒙应用程序框架核心解析与实操
    .NET 中如何快速实现 List 集合去重?
    扣子Coze实战:从0到1打造抖音+小红书热点监控智能体
    浅谈数据访问层
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号