C90 和 typedef

发布于 2024-10-09 01:37:07 字数 185 浏览 2 评论 0原文

我定义了 struct point {(...)}; 。但对于 C90,我似乎必须使用 typedef 来完成。我该如何正确地做到这一点? typedef struct point {} point;typedef struct {} 点;typedef 结构点{};

I had struct point {(...)}; defined. But with C90 it seems I have to do it with typedef. How do I do this correctly? typedef struct point {} point;? typedef struct {} point;? typedef struct point {};?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回心转意 2024-10-16 01:37:08

您可以执行以下操作:

typedef struct Point { ... } MyPoint;

然后使用两种声明:

struct Point p1;
MyPoint p2;

You can do:

typedef struct Point { ... } MyPoint;

and then use both kinds of declarations:

struct Point p1;
MyPoint p2;
我最亲爱的 2024-10-16 01:37:08

这两个都是正确的:

typedef struct point { /* ... */ } point;
typedef struct { /* ... */ } point;

第一个版本定义了struct point,然后将point定义为它的别名,而第二个版本将point定义为匿名结构的别名。

Both of these are correct:

typedef struct point { /* ... */ } point;
typedef struct { /* ... */ } point;

The first version defines struct point and then defines point as an alias for it, while the second defines point as an alias for an anonymous struct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文