为什么在编译器选项中添加搜索目录后,标准库 header 中会报错?

Why are there errors reported inside a standard library header after adding a search directory in compiler options?

我在 CodeBlocks (MinGW32) 中有一个项目是这样设置的:

Foo/src/somefile1.cpp
Foo/src/somefile2.cpp
Foo/src/somefile1.h
...

Headers 以这种方式包含在内:

#include "somefile1.h"

为了能够编译,我在 "Project options" > "Search directories" 中添加了以下目录(作为相对路径):

src

添加该文件夹后,项目编译。但是,如果我包含标准 header,如 <ctime>,则 ctime header 文件中会出现以下错误:

'::clock_t' has not been declared
'::time_t' has not been declared
...

等等 ctime 的 std namespace 括号内的所有行。如果我从搜索目录中删除 src 文件夹,我可以再次编译。

我已将代码减少到最低限度,删除了除 main.cpp 之外的所有文件,但问题仍然存在:

#include <ctime> //errors if "src" folder added in search folders

int main(int argc, char **argv) {
    time(NULL); //does not compile
    return(0);
}

<ctime> header 将名称放入 std 命名空间,因此您需要:

std::time(NULL);

您自己的 header 文件中可能有一个 using namespace std; - 不要那样做。

此外,您通常希望像这样包含自己的 header:

#include "somefile1.h"

我发现了问题:

在我尝试编译的项目中有一个名为 "time.h" 的文件。

它与标准库 time.h 文件同名。因此,在ctime文件中,包含了项目的time.h(不包含clock_t等定义),因此无法编译ctime。

作为解决方案,我只是将项目的 time.h 重命名为非保留名称。