gpt4 book ai didi

'function' 的类型冲突和函数 'function' 的隐式声明在 C99 中无效

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

关于这些问题的其他答案说要在头文件中或在 main() 之前声明该函数,但我有这两个,但它仍然不起作用。

#include <stdbool.h>

#ifndef WORK
#define WORK

#define TRACING true
#define DIMENSION 4
#define TOUR_LENGTH 15

void trace(char *s); //error here "Conflicting types for 'trace'"

#endif

^这是头文件

void trace(char *s) //error here "Conflicting types for 'trace'"
{
if (TRACING)
{
printf("%s\n",s);
}
}

^有问题的函数。该函数在其他 .c 文件中多次使用 #include work.h

#include <stdbool.h>
#include "work.h"
#include "gameTree.h"
#include "gameState.h"
#include "stack.h"
#include <stdio.h>


/*
* trace
* Provide trace output.
* Pre-condition: none
* Post-condition: if trace output is desired then the given String
* parameter is shown on the console
* Informally: show the given message for tracing purposes
*
* param s the String to be displayed as the trace message
*/
void trace(char *s) //error here "Conflicting types for 'trace'"
{
if (TRACING)
{
printf("%s\n",s);
}
}


/*
* intro
* Provide introductory output.
* Pre-condition: none
* Post-condition: an introduction to the progrm has been displayed
* Informally: give the user some information about the program
*/
void intro()
{
printf("Knight's Tour\n");
printf("=============\n");
printf("Welcome to the Knight's Tour. This is played on a(n) %d x %d board. The\n",DIMENSION,DIMENSION);
printf("knight must move %d times without landing on the same square twice.\n",TOUR_LENGTH);
printf("\n");
}


/*
* main
* Program entry point.
* Pre-condition: none
* Post-condition: the solution to the Knight's Tour will be found
* and displayed
* Informally: solve the Knight's Tour
*/
int main(int argc, char *argv[])
{
gameTree g,a; // whole game tree and solution game tree
gameState s; // initial game state
stack k,r; // stack for intermediate DF use and for tracing solution
queue q; // queue for intermediate BF use

// give introduction
intro();

// initialise data structures
init_stack(&k);
init_queue(&q);
init_gameState(&s, 1, 1); // start at top left-hand corner: (1,1)

// show initial board
printf("\nStarting board:\n");
showGameState(s);
printf("\n");

// solve
init_gameTree(&g, false, s, 1);
a = buildGameDF(g, k, TOUR_LENGTH); // Depth-first
//a = buildGameBF(g, q, TOUR_LENGTH); // Breadth-first

// show results
if (isEmptyGT(a))
{
printf("No solution!\n");
}
else
{
// re-trace solution from leaf to root
init_stack(&r);
do
{
push(r, a);
a = getParent(a);
} while (!isEmptyGT(a));

// display move list
while (!isEmptyS(r))
{
a = (gameTree)top(r);
s = (gameState)getData(a);
printf("Move %d: (%d,%d)\n", getLevel(a), getRow(s), getColumn(s));
pop(r);
}

// display final path
printf("\nFinal board:\n");
showGameState(s);
}

^整个main()和.c文件,错误主要发生在具有ADT定义的其他补充文件中,例如:

gameTree getParent(gameTree t)
{
gameTree p;

trace("getParent: getParent starts"); //error here "Conflicting types for 'trace'" and "Implicit declaration of function 'trace' is invalid in C99"

if (isEmptyGT(t))
{
fprintf(stderr, "getParent: empty game tree");
exit(1);
}

init_gameTree(&p, true, NULL, -1);
p->root = getTNParent(t->root);

trace("getParent: getParent ends"); //error here "Conflicting types for 'trace'" and "Implicit declaration of function 'trace' is invalid in C99"
return p;
}

^调用跟踪函数的示例。

#include <stdbool.h>
#include "tNode.h"
#include "gameTree.h"
#include "work.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>

^ADT .c 文件之一的导入

是的,我不知道该怎么办。

澄清work.h和work.c是该项目的主要文件。

void setChild(gameTree t, gameTree c)
{
trace("setChild: setChild starts"); //error here "Implicit declaration of function 'trace' is invalid in C99"
setTNChild(t->root, c->root);

trace("setChild: setChild ends"); //but not here
}


void setTNSibling(tNode t, tNode n)
{
trace("setTNSibling: setTNSibling starts"); //both errors here

t->sibling = n;

trace("setTNSibling: setTNSibling ends"); //only the "Implicit declaration of function 'trace' is invalid in C99" error here
}

我无法确定是什么导致了某些错误,但如果它与导入不正确的头文件有关,那么它不应该始终保持一致吗?

我还应该注意,这些文件是给我使用的,所以我没有编写原始的跟踪函数。

最佳答案

从您的代码示例中尚不清楚 <ncurses.h> 是否有效是否包含在您的某些源文件中。有一个函数trace已在 <ncurses.h> 中定义在 MacOS 上:

/usr/include/curses.h:1710:extern NCURSES_EXPORT(void) trace (const unsigned int);

如果这是实际问题,您需要重命名 trace功能到其他东西。

从上下文来看,您可能应该使用宏 TRACE(...)扩展为对 fprintf(stderr, __VA_ARGS__) 的调用除非您针对发布版本进行编译,在这种情况下它将根本扩展为空。

另一个潜在的警告原因是原型(prototype):

void trace(char *s);

传递 char * 的字符串常量参数可能会导致警告。自 trace不修改字符串参数的内容,应该声明 const char * 。通过修改原型(prototype)来修复此问题:

void trace(const char *s);

关于 'function' 的类型冲突和函数 'function' 的隐式声明在 C99 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30434826/

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