标签: c++ header stdafx.h
#include <stdafx.h>
我查了error C1083: Cannot open include file: 'stdafx.h': No such file or directory in VS 2005 但它仍然无济于事。即时通讯使用预编译头。通常我会从我为自己保存的模板开始。拥有我喜欢的所有标题,并且过去包含已经有效。此外,我会附加代码,但它不允许我在任何项目上访问它。甚至是一个简单的问候世界。
答案 0 :(得分:0)
尝试#include "stdafx.h"。
#include "stdafx.h"
这将改变编译器查找标头的方式 - 即,它将检查本地目录。
Here is the SO question for further reference