Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在 C 中只有 .h 文件和 .o 文件,我可以调用函数吗?
我的意思是如果我只有example.h文件和example.o文件,但我没有example.c文件,我想从主文件中读取函数。
example.h
example.o
example.c
我知道我可以用指针做到这一点,但我真的不知道该怎么做。关于如何实现这一目标的任何建议?
用于#include<object.h>在编译时包含头文件并提供目标文件的路径。
#include<object.h>
gcc main.c object.o -o main
现在您应该可以使用该功能了。