gpt4 book ai didi

c - 如何处理 C 中的多级包含?

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

我有第二级包括让我悲伤:

Undefined                       first referenced
symbol in file
function2 /var/tmp//ccAPaWbT.o
ld: fatal: symbol referencing errors. No output written to run
collect2: ld returned 1 exit status

主文件:

#include "functions02.c"
int main(){
int x = funcion2();
}

functions02.c 文件:

#ifndef FUNCTIONS02_C
#define FUNCTIONS02_C
int funcion2();
#if __INCLUDE_LEVEL__ == 0
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include "functions01.c"
int main() {
return function2();
}
#endif
int function2()
return function1();
}
#endif

functions01.c 文件:

#ifndef FUNCTIONS01_C
#define FUNCTIONS01_C
int funcion1();
#if __INCLUDE_LEVEL__ == 0
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
int main() {
return function1();
}
#endif
int function1()
return 10;
}
#endif

我假设可以使用 __INCLUDE_LEVEL__ 或在 gcc 编译上操作链接来修复此问题,但我找不到 fork 变体。

首先,是否可以在不将函数放入外部头文件中的情况下实现我正在寻找的目标?其次,正确的做法是什么?

编辑:我意识到我忘记了向它们添加函数依赖项。也就是说,函数使用的包含不能通过将它们添加到主函数旁边来排除,如果关闭则在排除中扭曲。

最佳答案

是的,可以使用编译时标志(以及在使用 #if 的代码中)包含/排除代码的任何部分,就像您尝试做的那样。

在您的情况下,我假设您没有定义 __INCLUDE_LEVEL__ 标志,因此链接器无法找到 funciton2,因此出现错误。

如果你定义它,你将有三个“main()”:-),它会再次失败。因此,您需要稍微修改一下代码。

此外,#include'ing“C”文件是不可取的,并且在实践中不使用。我假设你只是想尝试和学习,这很好。

关于c - 如何处理 C 中的多级包含?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16493104/

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