gpt4 book ai didi

c - 如何将 typedef 结构与实例创建结合起来?

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

因此您可以这样做来创建 c1c2 作为 struct Complex 的实例:

struct Complex {
int real;
int imag;
} c1, c2;

你可以这样做来定义匿名结构:

typedef struct { ... } Complex;

但是有没有什么办法可以同时做到这两点呢?

最佳答案

不,你不能。 typedef 的语法是

typedef T type_ident;  // T is type specified by the declaration specifiers  

这意味着 typedef T 之后的任何内容都将是类型名称,而不是该类型的实例。所以,在

typedef struct { ... } Complex, c1, c2;   

Complexc1c2 都是struct { ... } 类型的typedef 名称。

关于c - 如何将 typedef 结构与实例创建结合起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27931692/

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