非静态数据成员的初始化顺序
在这个场景中,我们有两个非静态数据成员,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中文网其他相关文章!