gpt4 book ai didi

c - 问题初始化结构

转载 作者:太空狗 更新时间:2023-10-29 15:59:14 25 4
gpt4 key购买 nike

这是我的代码:

typedef struct{
char name[64];
} Cat;

Cat createCat(char name[64]) {
Cat newCat;

int i;

for(i = 0; i < 64; i += 1) {
newCat.name[i] = name[i];
}

return newCat;
}

Cat exampleCat = createCat("Bob");

编译出现如下错误:

initializer element is not constant

我做错了什么?

最佳答案

Cat exampleCat = createCat("Bob");

你不能在这里做一个方法调用。在其他地方初始化 exampleCat

这在规范第 6.7.8/4 节中有解释:

All the expressions in an initializer for an object that has static storage duration shall be constant expressions or string literals.

关于c - 问题初始化结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11831458/

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