从库中导出指向类的指针

发布于 2024-12-11 08:58:40 字数 298 浏览 0 评论 0原文

__declspec(dllexport) ClassName *c;

放置在标头中,给我带来很多错误消息(最多 10 条),例如:

  • 语法错误:缺少 ';'在 '*' 之前
  • 缺少类型说明符 - int

不仅在该标头中假定,而且在 ClassName 实现中的静态函数周围也假定,同时

__declspec(dllexport) int *c;

编译良好。

这是怎么回事?

__declspec(dllexport) ClassName *c;

placed in the header getting me a lot of error messages (up to 10), such as:

  • syntax error : missing ';' before '*'
  • missing type specifier - int assumed

not only in that header, but also around static functions in ClassName implementation, while doing

__declspec(dllexport) int *c;

compiles fine.

What's going on?

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

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

发布评论

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

评论(1

绮筵 2024-12-18 08:58:40

您应该将其标记为 extern。另外,请确保 ClassName 的定义可见。

You should mark it as extern. Also, make sure the definition of ClassName is visible.

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