我用VC编译时出现这个问题,双击它对跳以最开关的#include<stdafx.h>这里.不知是怎么回事,如何解决啊,谢谢.1. d:\c++\workmate\workmate.cpp(4) : fatal error C1083: Cannot open precompiled header file: 'Debug/workmate.pch': No such file or directory2. 在重建时遇到这样的问题.Linking...nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endthreadexnafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __beginthreadexDebug/workmate.exe : fatal error LNK1120: 2 unresolved externals执行 link.exe 时出错.
參考答案:你把 #include <stdafx.h> 换成 #include "stdafx.h" 这样试试
因为这个文件是在当前目录下,另外那个PCH的文件是自动生成的估计不可能出现找不到,肯定是代码或设置有问题,按我说的方法试试吧!
祝你好运!