java 成员变量声明顺序_C++核心准则讨论:按照成员声明的顺序定义和初始化成员变量...
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設計模式》是作者最近出版的新書,拜托多多關注!
本書利用Python 的標準GUI 工具包tkinter,通過可執行的示例對23 個設計模式逐個進行說明。這樣一方面可以使讀者了解真實的軟件開發工作中每個設計模式的運用場景和想要解決的問題;另一方面通過對這些問題的解決過程進行說明,讓讀者明白在編寫代碼時如何判斷使用設計模式的利弊,并合理運用設計模式。
對設計模式感興趣而且希望隨學隨用的讀者通過本書可以快速跨越從理解到運用的門檻;希望學習Python GUI 編程的讀者可以將本書中的示例作為設計和開發的參考;使用Python 語言進行圖像分析、數據處理工作的讀者可以直接以本書中的示例為基礎,迅速構建自己的系統架構。
覺得本文有幫助?請分享給更多人。
關注微信公眾號【面向對象思考】輕松學習每一天!
面向對象開發,面向對象思考!
總結
以上是生活随笔為你收集整理的java 成员变量声明顺序_C++核心准则讨论:按照成员声明的顺序定义和初始化成员变量...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlab的默认字体_matlab默认
- 下一篇: 816固件a2可以升a1吗_关于A1,A