gpt4 book ai didi

c - 错误 "expression must have a constant value"

转载 作者:太空宇宙 更新时间:2023-11-04 07:45:24 24 4
gpt4 key购买 nike

当我使用 const 变量“a”和“b”来初始化结构化变量“cfg”时,我面临以下编译器问题“表达式必须具有常量值”

static const unsigned int a = 1;
static const unsigned int b = 2;


typedef struct
{
const uint32 InitTypestruct_elem1;
const uint32 InitTypestruct_elem2;
}InitType;

typedef struct
{
InitType BoardTypestruct_elem1;
}BoardType;


static const BoardType cfg =
{
/* pbgc cfg */
.BoardTypestruct_elem1 =
{
***.InitTypestruct_elem1 = a,
***.InitTypestruct_elem2 = b
}
};


const InitType *cfg(void)
{
return &cfg.BoardTypestruct_elem1;
}


int main()
{
//cfg

return 0;
}

编译警告原因在***行

为什么会出现这个问题? a 和 b 是常量值?

最佳答案

简化其他答案:

static const unsigned int a = 1;

a 是一个变量,不管它是const。您不能在编译时使用另一个(全局)变量初始化全局变量。编译器不会将其视为常量。

关于c - 错误 "expression must have a constant value",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57572623/

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