gpt4 book ai didi

c++ - 将大小为编译时常量的数组初始化为单个值

转载 作者:可可西里 更新时间:2023-11-01 18:26:08 25 4
gpt4 key购买 nike

我有一个 c 风格的数组,其大小由 #define 定义,并且可以根据编译选项进行更改,例如

#if LINUX
# define SIZE 4
#else
# define SIZE 5
#endif
static int myArr[SIZE] = { /* ??? */ };

如何将整个数组初始化为非零值,例如所有 42

最佳答案

我不知道 C 风格数组的解决方案,尽管使用 constexpr 和 C++17 你可以使用 std::array 来解决这个问题。

constexpr std::array<int, SIZE> createFilledArray (int value){
std::array<int, SIZE> a{0};
for (auto i = 0; i < SIZE; ++i)
a[i] = value;
return a;
}

static constexpr auto myArr = createFilledArray(42);

Code at compiler explorer

这样做的缺点是不能改变数组。如果您从变量中删除 constexpr,您的编译器应该能够对其进行优化。

从 C++20 开始,您可以强制初始化:

static constinit auto myArr = createFilledArray(42);

不确定提案是否已合并:参见 constinit proposal

关于c++ - 将大小为编译时常量的数组初始化为单个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56375690/

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