非靜態資料成員的初始化順序
在這個場景中,我們有兩個非靜態資料成員,a 和b,宣告為在類X 中。出現一個常見問題:當 X 的建構子為呼叫?
為了回答這個問題,我們轉向C 標準的第12.6.2 節,它概述了類別成員的初始化順序:
5 Initialization shall proceed in the following order: -- First, and only for the constructor of the most derived class as described below, virtual base classes shall be initialized in the order they appear on a depth-first left-to-right traversal of the directed acyclic graph of base classes... -- Then, direct base classes shall be initialized in declaration order as they appear in the base-specifier-list... -- Then, nonstatic data members shall be initialized in the order they were declared in the class definition... -- Finally, the body of the constructor is executed...
基於此規則,順序a 和b 的初始化僅由它們在類別定義中的位置決定。由於a先於b,因此它將首先被初始化。無論構造函數體內明確指定的成員初始化順序如何,這都成立。
因此,在這種情況下,當呼叫 X 的建構子時,A 的建構子會在 B 的建構子之前被呼叫。
以上是C 中非靜態資料成員的初始化順序是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!