C++初学各种错误

unexpected end of file while looking for precompiled header directive

解决:

1、右键点工程名,选设置,然后选c/c++属性页,再选catagory选单中选 precompiled header ,将选项置成no use 或者autometic。

2、如果使用的是Win32工程,可能就是错误文件没有包含:#include "stdafx.h",添加该包含即可。


VC编译时,提示no compile tool is associated with the file extension错误

原因是你目前打开的是.h文件,而C++程序中,.h的头文件是不参与编译的。

你只需要把其他.c文件或者.cpp文件,双击打开,这时在编译就不会提示了


你可能感兴趣的:(C++)