fatal error C1010: unexpected end of file while looking for precompiled header directive

fatal error C1010: unexpected end of file while looking for precompiled header directive

致命错误C1010:意外的文件结束,同时寻找预编译头指令


1.这个问题一般是忘记或少写了";","}" 等之类的东西。


2.就是在将写好的.cpp添加到MFC里面去后会出现这个问题,也就是今天我遇到的问题。
通过添加文件的方式,添加了一些cpp文件到一个MFC的程序,但该cpp文件并不是MFC,而是标准的C++。 
  解决方案1: 右键单击项目工程中的cpp文件,在菜单Project->Settings->C/C++->Precompile Header,设置为第一项:Not using precompile headers。
  解决方案2:在.cpp文件开头.h添加包含文件stdafx.h。 #include"stdafx.h"
这里需要注意的一点是: 
 #include"stdafx.h"这个头文件必须加在第一行。我开始添加在最下面结果出现了好多错误。
如:
#include"stdafx.h"//添加在最上面
#include "head.h"
#include <string.h>
#include <malloc.h>



参考文章:百度知道

你可能感兴趣的:(fatal error C1010: unexpected end of file while looking for precompiled header directive)