1
我不確定如何在C中聲明全局聯合。下面是我的代碼(全部都在main之外)。在C中聲明全局工會
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’.
我怎樣才能宣佈聯合的方式,我可以用它作爲返回類型爲函數?
預先感謝您! Andrew
不應該是 typedef union DictVal int int iVal; char * cVal; } DictVal; ? – blueberryfields 2011-01-31 04:08:39
你確定嗎?單獨的代碼片段編譯得很好。 – ephemient 2011-01-31 04:09:29