#include 指令:“test.h”与“test.h”之间的区别和“./test.h”

发布于 2024-08-08 02:46:10 字数 96 浏览 3 评论 0原文

对于 C/C++ 预处理器,#include "./test.h"#include "test.h" 之间有什么区别吗?

Is there any difference between #include "./test.h" and #include "test.h" for the C/C++ preprocessor?

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

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

发布评论

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

评论(4

只是在用心讲痛 2024-08-15 02:46:10

不,没有区别。

你也可以有

#include "../thisdir/test.h"

它会是一样的

No, there is no difference.

You could also have

#include "../thisdir/test.h"

And it would be the same

放飞的风筝 2024-08-15 02:46:10

根据 C 标准,没有区别:编译器可以指定如何搜索它们。实际上,对于我所知道的任何实现来说,也不应该有任何差异。

According to the C standard, there is no difference: the compiler gets to specify how they are searched. In practice, there shouldn't be any difference, either, for any of the implementations I am aware of.

囚我心虐我身 2024-08-15 02:46:10

预处理器将同等对待这两种样式。标准做法是

#include "test.h"

将包含文件路径作为选项传递给编译器。 (例如,GCC 的 -I 选项)。这使得更改头文件的位置变得容易。您只需在项目的 make 文件中进行一次更改即可。

Both styles will be treated the same by the pre-processor. The standard practice is

#include "test.h"

and pass the include file path as an option to the compiler. (For instance, the -I option of GCC). This makes it easy to change the location of header files. You just need to make a single change in the project's make file.

¢蛋碎的人ぎ生 2024-08-15 02:46:10

我认为有一个重要的区别。

对于#include "test.h",将在使用选项 -I 为编译器指定的所有目录中搜索包含文件。

#include "./test.h" 的情况下,仅使用引用文件的驻留目录。

In my opinion there is an important difference.

In the case of #include "test.h" the include file is searched for in all directories specified to the compiler with the option -I.

In the case of #include "./test.h" only the residing directory of the referring file is used.

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