initialize a const array in a class initializer in C++(在 C++ 中的类初始化程序中初始化 const 数组)
问题描述
我在 C++ 中有以下类:
I have the following class in C++:
class a {
const int b[2];
// other stuff follows
// and here's the constructor
a(void);
}
问题是,我如何在初始化列表中初始化 b,因为我无法在构造函数的函数体内初始化它,因为 b 是 const
?
The question is, how do I initialize b in the initialization list, given that I can't initialize it inside the body of the function of the constructor, because b is const
?
这不起作用:
a::a(void) :
b([2,3])
{
// other initialization stuff
}
典型的例子是我可以为不同的实例设置不同的 b
值,但已知这些值在实例的生命周期内是恒定的.
The case in point is when I can have different values for b
for different instances, but the values are known to be constant for the lifetime of the instance.
推荐答案
正如其他人所说,ISO C++ 不支持.但是你可以解决它.只需使用 std::vector 代替.
Like the others said, ISO C++ doesn't support that. But you can workaround it. Just use std::vector instead.
int* a = new int[N];
// fill a
class C {
const std::vector<int> v;
public:
C():v(a, a+N) {}
};
这篇关于在 C++ 中的类初始化程序中初始化 const 数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中的类初始化程序中初始化 const 数组
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01