如何将结构复合文字作为参数传递给函数?
How can I pass a struct compound literal to a function as argument?
这是我的 struct
:
typedef struct
{
float r, g, b;
} color_t;
我想将此 struct
的复合文字作为参数传递给函数,如下所示:
void printcolor(color_t c)
{
printf("color is : %f %f %f\n", c.r, c.g, c.b);
}
printcolor({1.0f, 0.6f, 0.8f});
但是,这给了我一个错误:
error: expected expression before '{' token
C 中的 compound literal 必须 在大括号括起来的初始化列表之前指定类型(使用 'cast-like' 语法)。因此,如评论中所述,您应该将函数调用更改为:
printcolor((color_t){1.0f, 0.6f, 0.8f});
这是我的 struct
:
typedef struct
{
float r, g, b;
} color_t;
我想将此 struct
的复合文字作为参数传递给函数,如下所示:
void printcolor(color_t c)
{
printf("color is : %f %f %f\n", c.r, c.g, c.b);
}
printcolor({1.0f, 0.6f, 0.8f});
但是,这给了我一个错误:
error: expected expression before '{' token
C 中的 compound literal 必须 在大括号括起来的初始化列表之前指定类型(使用 'cast-like' 语法)。因此,如评论中所述,您应该将函数调用更改为:
printcolor((color_t){1.0f, 0.6f, 0.8f});