【More Effective C++】条款35:将非尾端类设计为抽象类

考虑以下继承场景:

  • 通过指针的赋值会出现部分赋值的情况:只修改了Animal的数据成员,Lizard数据没有被修改
class Animal {
public:Animal(int data):data(data) {}Animal& operator=(const Animal& rhs) {if (&rhs == this) return *this;this->data = rhs.data;return *this;}int getData() const { return data; }
public:int data;
};class Lizard : public Animal {
public: Lizard(int data): Animal(data), l_data(data) {}// Lizard& operator=(const Lizard& rhs) {//     if (&rhs == this) return *this;//     this->data = rhs.data;//     return *this;// }
public:int l_data;
};class Chicken : public Animal {
public: Chicken(int data): Animal(data), c_data(data) {}// Chicken& operator=(const Chicken& rhs) {//     if (&rhs == this) return *this;//     this->data = rhs.data;//     return *this;// }
public:int c_data;
};int main() {Animal a1(1);Animal a2(2);std::cout << a1.getData() << std::endl;a1 = a2;std::cout << a1.getData() << std::endl;return 0;
}

可以将拷贝赋值函数改为虚函数:

  • 但是又引入了异性赋值的情况,让人难以理解
class Animal {
public:Animal(int data):data(data) {}virtual Animal& operator=(const Animal& rhs) {if (&rhs == this) return *this;this->data = rhs.data;return *this;}int getData() const { return data; }
public:int data;
};class Lizard : public Animal {
public: Lizard(int data): Animal(data), l_data(data) {}virtual Lizard& operator=(const Animal& rhs) {if (&liz_rhs == this) return *this;this->data = rhs.data;return *this;}
public:int l_data;
};class Chicken : public Animal {
public: Chicken(int data): Animal(data), c_data(data) {}virtual Chicken& operator=(const Animal& rhs) {if (&rhs == this) return *this;this->data = rhs.data;return *this;}
public:int c_data;
};int main() {Lizard liz(1);Chicken chick(2);Animal *pAnimal11 = &liz;Animal *pAnimal22 = &chick;*pAnimal11 = *pAnimal22;return 0;
}

解决办法是在拷贝赋值函数中进行类型转换:

  • 无法转型的情况抛出异常
class Animal {
public:Animal(int data):data(data) {}virtual Animal& operator=(const Animal& rhs) {if (&rhs == this) return *this;this->data = rhs.data;return *this;}int getData() const { return data; }
public:int data;
};class Lizard : public Animal {
public: Lizard(int data): Animal(data), l_data(data) {}virtual Lizard& operator=(const Animal& rhs) {const Lizard& liz_rhs = dynamic_cast<const Lizard&>(rhs);if (&liz_rhs == this) return *this;this->data = rhs.data;return *this;}
public:int l_data;
};class Chicken : public Animal {
public: Chicken(int data): Animal(data), c_data(data) {}virtual Chicken& operator=(const Animal& rhs) {const Chicken& liz_rhs = dynamic_cast<const Chicken&>(rhs);if (&rhs == this) return *this;this->data = rhs.data;return *this;}
public:int c_data;
};

为了解决简单对象的赋值情况需要赋值转型成本,可以将拷贝函数进行重载

class Animal {
public:Animal(int data):data(data) {}virtual Animal& operator=(const Animal& rhs) {if (&rhs == this) return *this;this->data = rhs.data;return *this;}int getData() const { return data; }
public:int data;
};class Lizard : public Animal {
public: Lizard(int data): Animal(data), l_data(data) {}Lizard& operator=(const Animal& rhs) {if (&liz_rhs == this) return *this;this->data = rhs.data;return *this;}virtual Lizard& operator=(const Animal& rhs) {return operator=(dynamic_cast<const Lizard&>(rhs));}
public:int l_data;
};class Chicken : public Animal {
public: Chicken(int data): Animal(data), c_data(data) {}Chicken& operator=(const Animal& rhs) {if (&rhs == this) return *this;this->data = rhs.data;return *this;}virtual Chicken& operator=(const Animal& rhs) {return operator=(dynamic_cast<const Chicken&>(rhs));}
public:int c_data;
};

未完待续。。。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/738151.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第100+1步 ChatGPT文献复现:ARIMAX预测肺结核 vol. 1

基于WIN10的64位系统演示 一、写在前面 各位大佬&#xff0c;好久不见。 《100步入门机器学习》肝完了&#xff0c;不懂大家学了多少了&#xff0c;默认你们都学完了吧。 今年我们换一个玩法&#xff08;灌水&#xff09;&#xff1a;一系列更接近实战的教程&#xff0c;复…

(黑马出品_07)SpringCloud+RabbitMQ+Docker+Redis+搜索+分布式

&#xff08;黑马出品_07&#xff09;SpringCloudRabbitMQDockerRedis搜索分布式 微服务技术分布式搜索 今日目标1.数据聚合1.1.聚合的种类1.2.DSL实现聚合1.2.1.Bucket聚合语法1.2.2.聚合结果排序1.2.3.限定聚合范围1.2.4.Metric聚合语法1.2.5.小…

6.S081的Lab学习——Lab1: Xv6 and Unix utilities

文章目录 前言一、启动xv6(难度&#xff1a;Easy)解析&#xff1a; 二、sleep(难度&#xff1a;Easy)解析&#xff1a; 三、pingpong&#xff08;难度&#xff1a;Easy&#xff09;解析&#xff1a; 四、Primes(素数&#xff0c;难度&#xff1a;Moderate/Hard)解析&#xff1a…

node.js入门

一、cmd常用命令 windowsR 再输入cmd 打开命令提示符 (1)切换盘符 c: / d: (2)dir 查看全部内容 (3)cd 你需要打开的文件所处的大文件夹名字 (4)cd 大文件夹名再输入dir 查看该大文件里面的所有内容 (5)输出结果里 一个.表示当前目录&#xff0c;两个..表示上级目录 …

怎样在CSDN赚点零花钱

请教一下各位大佬&#xff0c;看到你们在CSDN很多都几万粉丝以上&#xff0c;能不能分享一下有什么涨粉的经验&#xff0c;还有怎样转化为额外收益……感谢各位提供宝贵的经验&#xff0c;谢谢……

文献阅读笔记:全卷积神经网络

文献阅读笔记&#xff1a;全卷积神经网络 摘要Abstract1. 全卷积神经网络1.1 文献摘要1.2 全卷积神经网络1.2.1 网络结构1.2.0 从分类器到密集 FCN1.2.2 上采样 Upsampling1.2.3 跳级结构1.2.4 FCN训练 1.3 实验1.4 总结 2. 代码实现 摘要 本周学习了全卷积神经网络&#xff0…

Acer宏碁非凡Swift SFG16-71工厂模式原厂Win11系统,预装OEM系统恢复开箱状态

宏基笔记本电脑SFG16-71原装出厂Windows11系统安装工厂包下载&#xff0c;带恢复重置功能 链接&#xff1a;https://pan.baidu.com/s/1JK02kBbwKG_cIBNlEOzrOw?pwdzdfm 提取码&#xff1a;zdfm 原装工厂包系统自带所有驱动、Office办公软件、出厂时自带主题壁纸图片、系统…

如何免费获取基于公网 IP 的 SSL 证书 (无需域名)

现在给网站安装SSL证书来实现网站的HTTPS安全访问已经成了大多数人的共识&#xff0c;但是有一些特殊情况&#xff1a;比如对于个别的应用IP地址不需要绑定域名&#xff0c;只是单纯用IP来访问网站&#xff0c;这种情况下&#xff0c;可以实现HTTPS访问吗&#xff1f; 先说答案…

vue-创建vue项目记录

安装node.js 先安装node.js的运行环境node.js的下载地址 安装后就可以使用npm命令 1、清除npm缓存&#xff1a;npm cache clean --force 2、禁用SSL&#xff1a;npm config set strict-ssl false 3、手动设置npm镜像源&#xff1a;npm config set registry https://registry.…

java8特性 stream流中map函数的使用

map 函数的作用就是针对管道流中的每一个数据元素进行转换操作。 例如 将集合中的每一个字符串&#xff0c;全部转换成大写&#xff01; List<String> collect alpha.stream().map(String::toUpperCase).collect(Collectors.toList()); //上面使用了方法引用&#xf…

10.5.8 优化 InnoDB 磁盘 I/O

如果您遵循了针对 SQL 操作的数据库设计和调优技术的最佳实践&#xff0c;但由于磁盘 I/O 活动频繁&#xff0c;数据库仍然很慢&#xff0c;请考虑这些磁盘 I/O 优化。如果 Unix top 工具或 Windows 任务管理器显示您的工作负载的 CPU 使用率低于 70%&#xff0c; 则您的工作负…

揭密无文件勒索病毒攻击,思考网络安全新威胁

前言 最近几年基于无文件攻击的网络犯罪活动越来越多&#xff0c;一些网络犯罪团伙开发了各种基于无文件攻击的恶意软件攻击套件&#xff0c;这些恶意软件攻击套件可用于勒索病毒、挖矿病毒、RAT远控、僵尸网络等恶意软件&#xff0c;在过去的几年时间里&#xff0c;无文件感染…

L1-8 静静的推荐(Python)

天梯赛结束后&#xff0c;某企业的人力资源部希望组委会能推荐一批优秀的学生&#xff0c;这个整理推荐名单的任务就由静静姐负责。企业接受推荐的流程是这样的&#xff1a; 只考虑得分不低于 175 分的学生&#xff1b;一共接受 K 批次的推荐名单&#xff1b;同一批推荐名单上…

Day35:安全开发-JavaEE应用原生反序列化重写方法链条分析触发类类加载

目录 Java-原生使用-序列化&反序列化 Java-安全问题-重写方法&触发方法 Java-安全问题-可控其他类重写方法 思维导图 Java知识点&#xff1a; 功能&#xff1a;数据库操作&#xff0c;文件操作&#xff0c;序列化数据&#xff0c;身份验证&#xff0c;框架开发&…

pandas plot函数:数据可视化的快捷通道

一般来说&#xff0c;我们先用pandas分析数据&#xff0c;然后用matplotlib之类的可视化库来显示分析结果。而pandas库中有一个强大的工具--plot函数&#xff0c;可以使数据可视化变得简单而高效。 1. plot 函数简介 plot函数是pandas中用于数据可视化的一个重要工具&#xff0…

WPF Window 窗口 常用属性

window窗口属性 属性 定义 属性值 注解 WindowStartupLocation 获取或设置窗口首次显示时的位置。 一个 WindowStartupLocation 值&#xff0c;指定窗口首次显示时的顶边/左边位置。 默认值为 Manual。 将 WindowStartupLocation 属性设置为 Manual 使窗口按其 Left 和 To…

MySQL中IF()、IFNULL()、NULLIF()、ISNULL()、CASE函数的使用详解

1、IF()函数的使用 IF函数根据判断条件是否成立进行选择执行&#xff0c;成立时执行一条语句&#xff0c;不成立时执行另一条语句 语法结构&#xff1a; IF(condition, value_if_true, value_if_false) 参数说明 condition: 判断条件 value_if_true: 如果condition的结果…

凌鲨本地接口架构

本地API通过监听本地端口&#xff0c;提供http服务&#xff0c;让本地应用可以获取信息和操作凌鲨客户端。 本地API架构 #mermaid-svg-seodZa6VsI4Qc8Cj {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-seodZa6VsI4…

辽宁博学优晨教育:视频剪辑培训的安全正规之路

在当今数字化时代&#xff0c;视频剪辑已成为一项炙手可热的技能。为满足广大学习者的需求&#xff0c;辽宁博学优晨教育推出了一系列专业的视频剪辑培训课程。本文将重点介绍辽宁博学优晨教育的视频剪辑培训如何在保障学员安全和学习效果方面做出了卓越的努力。 一、正规资质&…

Linux操作系统-06-进程与服务管理

使用ps命令查看进程。包括过滤进程信息 使用systemctl命令管理和运行Linux服务 进程&#xff08;Process&#xff09;&#xff1a;操作系统正在运行的应用程序。任意一个进程&#xff0c;都会消耗CPU和内存资源&#xff0c; 服务&#xff08;Service&#xff09;&#xff1a…