gpt4 book ai didi

c++ - C++ 中具有 const 成员的类数组

转载 作者:太空宇宙 更新时间:2023-11-04 14:04:41 25 4
gpt4 key购买 nike

<分区>

我想初始化一个类数组,其中包含一个必须在构造时初始化的 const 成员。

#include <iostream>
class A
{
private:
const int var_;

public:
A(const int var) : var_(var){};

int getVar(){return var_;}
};

class B
{
private:
A tab[2];

public:
B() : tab{2,5} {}; // The trick should be here, I think !

int getA(int index) { return tab[index].getVar();}
};

int main(void)
{

B b; // constraint : Dynamic allocation not allowed
std::cout << b.getA(0) << std::endl;

return 0;
}

此代码无法编译,因为 B 类的构造函数不正确。感谢您的帮助,尼古拉斯

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