struct conn_queue 在定义之前如何使用?
这段代码有效:
typedef struct conn_queue CQ;
struct conn_queue {
CQ_ITEM *head;
CQ_ITEM *tail;
pthread_mutex_t lock;
pthread_cond_t cond;
};
我认为应该是这样的:
struct conn_queue {
CQ_ITEM *head;
CQ_ITEM *tail;
pthread_mutex_t lock;
pthread_cond_t cond;
};
typedef struct conn_queue CQ;
为什么第一个版本有效?
This code works:
typedef struct conn_queue CQ;
struct conn_queue {
CQ_ITEM *head;
CQ_ITEM *tail;
pthread_mutex_t lock;
pthread_cond_t cond;
};
I think it should be like this:
struct conn_queue {
CQ_ITEM *head;
CQ_ITEM *tail;
pthread_mutex_t lock;
pthread_cond_t cond;
};
typedef struct conn_queue CQ;
Why does the first version work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在定义结构之前,您并没有真正使用该结构,而是为其创建了一个同义词。在您开始对结构进行操作之前,编译器不需要知道它是什么样的。
你的 typedef 包含一个预声明:
当你开始使用结构时,编译器需要知道它是什么样的(sizeof、引用成员变量等)。
因此,对于以下代码:
You aren't really using the struct before it's defined, you're creating an synonym for it. Until you start doing something with the structure, the compiler doesn't need to know what it looks like.
Your
typedef
contains a predeclaration:When you start using the structure, the compiler will need to know what it looks like (sizeof, referencing member variables etc).
So, for the following code: