首页 > 后端开发 > C++ > C 中非静态数据成员的初始化顺序是什么?

C 中非静态数据成员的初始化顺序是什么?

Barbara Streisand
发布: 2024-12-21 10:51:16
原创
727 人浏览过

What's the Initialization Order of Non-Static Data Members in C  ?

非静态数据成员的初始化顺序

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板