gpt4 book ai didi

c - 函数参数中的未知类型名称

转载 作者:行者123 更新时间:2023-11-30 15:17:12 25 4
gpt4 key购买 nike

我有这个头文件。

// Bunch of constants defined first

typedef char Token[MAX_TOKEN + 1];

typedef struct
{
Token szToken;
int iCategory;
int iSubcategory;
int iPrecedence;
} Element;

typedef struct
{
int iCount;
Element stackElementM[MAX_STACK_ELEM];
} StackImp;

typedef StackImp *Stack;

typedef struct
{
int iOutCount;
Element outM[MAX_OUT_ITEM];
} OutImp;

typedef OutImp *Out;

// Stack functions

void push(Stack stack, Element value);
Element pop(Stack stack);
int isEmpty(Stack stack);
Stack newStack();
void freeStack(Stack stack);
Element topElement(Stack stack);

void categorize(Element *pElement);
Out newOut();
void addOut(Out out, Element element);
void printOut(Out out);

int convertToPostfix(char *pszInfix, Out out); // This is confusing me...

void ErrExit(int iexitRC, char szFmt[], ...);
char * getToken(char *pszInputTxt, char szToken[], int iTokenSize);

此 header 由调用 int ConvertToPostfix(char *pszInfix, Out out) 的驱动程序使用,问题是我不断获取未知类型名称“Out”作为我的编译器出错。 ConvertToPostfix 函数应该采用一个标记来指示是否存在任何错误,并通过 addOut 函数(位于驱动程序中)填充 out 数组,但我无法执行任何操作,因为此错误阻止我编译! convertToPostfix() 函数不是驱动程序的一部分,如果这很重要的话,它位于单独的 C 文件中。

任何帮助都会很棒!

编辑:我首先为驱动程序生成一个.o文件,然后我对convertToPostfix()的.c文件执行相同的操作,就在此时

编译器

gcc -g -c -o myDriver.o myDriver.c //Complies fine.
gcc -g -c -o pretoPost.o pretoPost.c
pretoPost.c:7:38: error: unknown type name ‘Out’
int convertToPostfix(char *pszInfix, Out out)

我收到错误。

编辑2:非常感谢那些提供帮助的人!错误是我没有将 #include "header.h" 包含到我的 pretoPost.c 文件中!

最佳答案

将评论转移到答案。

如果 Garr Godfrey 提供了答案,请接受它 - 他提供了第一个指向问题的线索。

第一个指向问题的指针

Garr Godfrey [评论]):

"Separate C file" — does that mean it is being compiled, too? Is the header actually being included by the file the error shows up in, because it should be.

针对该问题的扩展评论

Jonathan Leffler noted :

Does pretoPost.c have #include "mystery.h" in it (where "mystery.h" is your unnamed header file)? If not, that's the trouble.

and :

Note that the error message is about pretoPost.c not understanding Out, not about the header not understanding Out.

这似乎就是问题所在!

Also note that you've not defined a prototype for newStack() or newOut() in particular. You've declared that the functions exist, but you've not specified the parameter list, so any number and any types of values are allowed. You need Out newOut(void); and Stack newStack(void); to declare prototypes for the functions. This is C, not C++ — in C++, the rules would be different. (This may just be sloppy coding by your professor if he supplied the header.)

这是一个常见的误解。函数声明如:

void *somefunction();

只是表示 somefunction 存在并返回一个 void * 值。它没有直接指定参数的类型或数量,但该函数不能是可变参数的(如 printf(),采用可变数量的参数),因为您必须始终 在使用可变参数函数之前,在范围内有一个原型(prototype)。要说“无参数”,C 需要:

void *somefunction(void);

现在你有了一个原型(prototype)。如果您使用 GCC 进行编译,请考虑:

gcc -std=c11 -Wall -Wextra -Werror -Wmissing-prototypes -Wstrict-prototypes …

需要一些时间来适应这种规定,但它可以确保您跳过测试很多错误。

关于c - 函数参数中的未知类型名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32613981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com