C++核心准则讨论:按照成员声明的顺序定义和初始化成员变量
发布日期:2021-07-01 05:30:59 浏览次数:2 分类:技术文章

本文共 2158 字,大约阅读时间需要 7 分钟。

Discussion: Define and initialize member variables in the order of member declaration

讨论:按照成员声明的顺序定义和初始化成员变量

 

Member variables are always initialized in the order they are declared in the class definition, so write them in that order in the constructor initialization list. Writing them in a different order just makes the code confusing because it won't run in the order you see, and that can make it hard to see order-dependent bugs.

成员变量总是按照它们在类定义中声明的顺序进行初始化,因此请按该顺序将其写入构造函数初始化列表中。以不同的顺序编写它们只会使代码令人困惑,因为它不会按照您看到的顺序运行,并且这使得很难看到与顺序相关的错误。

class Employee {    string email, first, last;public:    Employee(const char* firstName, const char* lastName);    // ...};Employee::Employee(const char* firstName, const char* lastName)  : first(firstName),    last(lastName),    // BAD: first and last not yet constructed    email(first + "." + last + "@acme.com"){}

In this example, email will be constructed before first and last because it is declared first. That means its constructor will attempt to use first and last too soon -- not just before they are set to the desired values, but before they are constructed at all.

在此示例中,由于email对象首先被声明,所以将在first和last之前进行构造。这意味着它的构造函数试图过早使用first和last-不仅早于将它们设置为所需值之前,甚至会遭遇对象完全构造之前。

If the class definition and the constructor body are in separate files, the long-distance influence that the order of member variable declarations has over the constructor's correctness will be even harder to spot.

如果类定义和构造函数体位于不同的文件中,则成员变量声明的顺序对构造函数正确性的远程影响将更加难以发现。

 

References(参考):

[Cline99] §22.03-11, [Dewhurst03] §52-53, [Koenig97] §4, [Lakos96] §10.3.5, [Meyers97] §13, [Murray93] §2.1.3, [Sutter00] §47

原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#discussion-define-and-initialize-member-variables-in-the-order-of-member-declaration

 

新书介绍

是作者最近出版的新书,拜托多多关注!

图片

本书利用Python 的标准GUI 工具包tkinter,通过可执行的示例对23 个设计模式逐个进行说明。这样一方面可以使读者了解真实的软件开发工作中每个设计模式的运用场景和想要解决的问题;另一方面通过对这些问题的解决过程进行说明,让读者明白在编写代码时如何判断使用设计模式的利弊,并合理运用设计模式。

对设计模式感兴趣而且希望随学随用的读者通过本书可以快速跨越从理解到运用的门槛;希望学习Python GUI 编程的读者可以将本书中的示例作为设计和开发的参考;使用Python 语言进行图像分析、数据处理工作的读者可以直接以本书中的示例为基础,迅速构建自己的系统架构。

 


 

觉得本文有帮助?请分享给更多人。

关注微信公众号【面向对象思考】轻松学习每一天!

面向对象开发,面向对象思考!

 

图片

 

转载地址:https://oothinking.blog.csdn.net/article/details/115529586 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:C++核心准则讨论:如果在初始化期间需要“虚行为”,请使用工厂函数
下一篇:C++核心准则附录B:代码现代化

发表评论

最新留言

网站不错 人气很旺了 加油
[***.192.178.218]2024年04月17日 20时21分16秒