在 main 中包含 .c 文件中存在的函数定义

发布于 2024-11-28 20:33:06 字数 113 浏览 1 评论 0原文

我不得不编写一些很长的函数。因此,我决定将它们放在不同的文件中并将它们链接到 main..,这样它的工作方式就像我在 main() 之后编写函数定义一样。

我该怎么办..

I had to write few functions which are very long. So, I decided to put them in different files and link them to main.. so that it works as if I wrote function definitions after main().

How do I do it..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心是晴朗的。 2024-12-05 20:33:06

在 .h 文件中,将原型放入

#ifndef MY_HEADER_H
#define MY_HEADER_H
void hello(void);
#endif

单独的 .c 文件中,实现函数,例如 hello.c,

#include "myheader.h"
void hello()
{
    printf("Testing function from other file\n");
}

然后在 main 中,

#include "myheader.h"

int main()
{
    hello();
    return 0;
}

确保在链接文件之前将 hello.c 编译为 hello.o,否则它会告诉您它无法解析对 hello 的引用。

In a .h file you put your prototype

#ifndef MY_HEADER_H
#define MY_HEADER_H
void hello(void);
#endif

In a seperate .c file you implement your function such as hello.c

#include "myheader.h"
void hello()
{
    printf("Testing function from other file\n");
}

then in main you do

#include "myheader.h"

int main()
{
    hello();
    return 0;
}

make sure you compile hello.c into hello.o before linking the files or it will tell you that it can't resolve the reference to hello.

中性美 2024-12-05 20:33:06

查找创建一个文件结尾为 .h 的头文件。
假设这个头文件名为 blah.h。

该标头的一般结构为

#ifndef BLAH_H_INCLUDED
#define BLAH_H_INCLUDED

//code

#endif // BLAH_H_INCLUDED

这些是标头防护,以防止多重包含。
在代码中,您仍将保留函数声明。

例如,void function(int blah); 将是一个有效的函数声明。

然后,该文件将包含在所有使用或定义声明的函数的文件的顶部,#include "blah.h"

然后,您可以在其他文件中定义您的函数,并且当您链接时他们一起,该计划将发挥作用。

Find create a header file that has a file ending of .h .
Lets say this header file is named blah.h.

The general structure of this header will be

#ifndef BLAH_H_INCLUDED
#define BLAH_H_INCLUDED

//code

#endif // BLAH_H_INCLUDED

Those are header guards, to prevent multiple inclusions.
Inside the code you will still your function declarations.

For example, void function(int blah); would be a valid function declaration.

This file is then included at the top of all of your files that uses or defines the functions declared, #include "blah.h"

Then you can define your functions in the other files, and when you link them together the program will work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文