C++头文件包括<>路径

发布于 2024-10-31 22:53:02 字数 216 浏览 3 评论 0 原文

快速背景。我正在使用以下版本:

  1. Windows XP
  2. Visual Studio 6.0

当您指定如下所示的 #include 时,它​​会在哪里查找此头文件:

#include <msxml.h>

是否查看环境变量来确定要查看哪些路径?如果有的话是哪一个?

Quick background. I'm using the following:

  1. Windows XP
  2. Visual Studio 6.0

When you specify a #include like the following where does it look for this header file:

#include <msxml.h>

Is it looking at an environment variable to determine which paths to look at? If so which one?

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

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

发布评论

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

评论(2

冰葑 2024-11-07 22:53:02

如果您使用的是 IDE,它会通过“工具”->“选项”->“目录”中的 GUI 选项设置各种搜索路径。

(另请参阅 用于调试的 Visual Studio 2008 (C++) 附加目录?。)

If you're using the IDE, it sets the various search paths through GUI options in in Tools->Options->Directories.

(See also Visual Studio 2008 (C++) additional directories for debugging?.)

权谋诡计 2024-11-07 22:53:02

环境变量很容易被调用,INCLUDE。您还可以使用 -I/path/to/include 手动指定其他包含目录。

顺便说一句,现在是 2011 年。1996 年已经过去很久了。

The environment variable is called, easily enough, INCLUDE. You can also manually specify additional include directories with -I/path/to/include.

And as a side note, it's 2011. 1996 passed a looong time ago..

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