在 C 中声明全局联合

发布于 2024-10-14 19:13:31 字数 577 浏览 2 评论 0原文

我不确定如何在 C 中声明全局联合。下面是我的代码(所有代码都在 main 之外)。

typedef union{
    int iVal;
    char* cVal;
} DictVal;
struct DictEntry{
    struct DictEntry* next;
    char* key;
    DictVal val;

    int cTag;
};

DictVal find(char* key);

int main()
{
    struct DictEntry dictionary[101];
    //printf("Hello");
}

DictValue find(char* key)
{
  DictVal a;
  a.iVal = 3;
  return a;
}

这样,我收到错误:

test.c:35: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘find’.

如何以可以将其用作函数的返回类型的方式声明联合?

先感谢您! 安德鲁

I am unsure how to declare a global union in C. Below is my code (all of which is outside of main).

typedef union{
    int iVal;
    char* cVal;
} DictVal;
struct DictEntry{
    struct DictEntry* next;
    char* key;
    DictVal val;

    int cTag;
};

DictVal find(char* key);

int main()
{
    struct DictEntry dictionary[101];
    //printf("Hello");
}

DictValue find(char* key)
{
  DictVal a;
  a.iVal = 3;
  return a;
}

With this, I receive the error:

test.c:35: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘find’.

How can I declare the union in a way that I can use it as a return type for a function?

Thank you in advance!
Andrew

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

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

发布评论

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

评论(2

南巷近海 2024-10-21 19:13:31

你打错字了。

有一个 DictVal typedef,但您尝试在定义上使用 DictValue

You've typo'ed.

There's a DictVal typedef but you tried to use DictValue on the definition.

时光瘦了 2024-10-21 19:13:31

拼写错误。

您声明:

 typedef union{
     int iVal;
     char* cVal;
 } DictVal;

但正在尝试使用

 DictValue find(char* key)
 {
   DictVal a;

Replace DictValue with DictVal。

还要让 main 返回一些东西。通常应该是 0。

上帝保佑!

Spelling error.

You declared:

 typedef union{
     int iVal;
     char* cVal;
 } DictVal;

but are trying to use

 DictValue find(char* key)
 {
   DictVal a;

Replace DictValue with DictVal.

Also make main return something. Normally it should be 0.

God bless!

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