码农知识堂 - 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. }

  • 相关阅读:
    Kafka3.0.0版本——消费者(offset的默认维护位置)
    Selenium爬取内容并存储至MySQL数据库
    使用libevent实现基于event的tcp服务器
    初识网络编程
    操作系统历史---03
    目标检测算法
    遥感IDL二次开发(大气校正)
    MySQL数据库主从同步,一致性解决方案
    通过事件绑定实现动画效果
    【云原生】微服务之Feign的介绍与使用
  • 原文地址:https://blog.csdn.net/weixin_45904815/article/details/133776647
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号