gpt4 book ai didi

c++ - 成员初始化器列表中的初始化

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:44:02 26 4
gpt4 key购买 nike

<分区>

class A
{
public:
int a ,b;
A() : a(1)
{
b=3;
}
};

如果我们创建这个类的一个对象:

A obj;

那么ab哪个先初始化?

b = 3赋值的过程中会不会有默认构造函数的参与?我指的是提供的答案:If you use assignment then the fields will be first initialized with default constructors and then reassigned (via assignment operator) with actual values.

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com