gpt4 book ai didi

c - 使用来自另一个结构的元素创建结构(错误 : expected specifier-qualifier-list before 'type' )

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

typedef struct testone
{
int x;
int y;
}t1;


typedef struct testtwo
{
t1 *t;
t->x curr_x


}t2;

我收到以下错误,有人知道问题出在哪里吗?

error: expected specifier-qualifier-list before 't'

谢谢

最佳答案

t->x 不是定义的类型。结构中的所有变量,一般来说,必须是由 c 定义或由您定义的类型。我想你要做的是拥有

typedef struct testtwo
{
t1 *t;
int curr_x;
}t2;

然后当您初始化 t2 结构时,您可以将 t1->x 值分配给 t2.curr_x

关于c - 使用来自另一个结构的元素创建结构(错误 : expected specifier-qualifier-list before 'type' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22288764/

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