我有两个包含文件头

#include "stdafx.h"
#include "psapi.h"

但是,它给出了无法打开源文件“stdafx.h”的编译时错误。我正在使用Visual Studios2010。是否甚至需要“stdafx.h”?我认为是因为如果我将其删除,该程序将无法编译。

最佳答案

Visual Studio将其用于“预编译头”功能。如果您不熟悉Visual Studio,建议将stdafx.h保留在项目中。

当然,如果您#include它,则应该拥有它。

关于c++ - 无法打开源文件 “stdafx.h”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6203266/

10-12 00:00