gpt4 book ai didi

c++ - 如何使用初始化列表 C++ 初始化数组

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:10:48 27 4
gpt4 key购买 nike

我有一个与 C++ 数组和结构相关的问题。我有一个结构:

struct npc_next_best_spot{
npc_next_best_spot(): x({0}),
y({0}),
value(-1),
k(0),
i({0}),
triple_ress({0}),
triple_number({0}),
bigI(0)
{}

int x[3];
int y[3];
double value;
int k;
int i[3];
int triple_ress[3];
int triple_number[3];
int bigI;
};

但这给出了警告

"list-initializer for non-class type must not be parenthesized".

那么我怎样才能确保这些数组都用 0 值初始化呢?

最佳答案

您可以按照错误提示进行操作。您可以为您的数组使用大括号初始值设定项,例如

npc_next_best_spot() : x{}, y{}, value(-1), k(0), i{}, triple_ress{}, triple_number{}, bigI(0) {}

将列表留空是因为任何缺少的初始化器都会对数组中的元素进行零初始化。

关于c++ - 如何使用初始化列表 C++ 初始化数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44500501/

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