c typedef(ed) 不透明指针

发布于 2024-10-22 00:21:04 字数 310 浏览 6 评论 0原文

我已经定义了一个不透明的结构和相关的 API,如下所示:

typedef struct foo foo;
foo *create_foo(...);
delete_foo(foo *f);

我无法在我的 c 文件中定义该结构。给出重新定义错误。

typedef struct foo {
   int implementation;
}foo;

我可以在没有 typedef 的 c 文件中使用 foo,但我想要 typedef (即直接将其用作 foo*)。有办法吗?

I've defined an opaque structure and related APIs like this:

typedef struct foo foo;
foo *create_foo(...);
delete_foo(foo *f);

I am not able to define the structure in my c file. Gives redefinition error.

typedef struct foo {
   int implementation;
}foo;

I am able to use foo in c file without typedef but I want the typedef (i.e. use it directly as foo*). Is there a way?

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

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

发布评论

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

评论(1

皇甫轩 2024-10-29 00:21:04

您的标头中已包含 typedef,因此请将其包含在内,并在不带 typedef 的实现中定义 struct foo

foo.h

typedef struct foo foo;
foo *create_foo(...);
delete_foo(foo *f);

foo.c

#include <foo.h>

struct foo { int implementation; };
/* etc. */

You already have the typedef in your header, so include that and define struct foo in the implementation without the typedef.

foo.h:

typedef struct foo foo;
foo *create_foo(...);
delete_foo(foo *f);

foo.c:

#include <foo.h>

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