VS2005 C++的error C2653问题
发布网友
发布时间:2022-05-17 14:54
我来回答
共2个回答
热心网友
时间:2023-10-25 18:10
为什么包含 #include "stdafx.h" 呢,是MFC工程吗?
还有你的cpp文件应该不是全部吧,没看到入口点函数。
我试了一下,如果就头文件和cpp文件加上main函数,一切正常。
你交换一下cpp文件中的
#include "A.h"
#include "stdafx.h"
的顺序。
也就是说,把它改为
#include "stdafx.h"
#include "A.h" 。
看看好没好了。
热心网友
时间:2023-10-25 18:11
#include "stdafx.h"
此头文件一般是MFC 和ATL用的。。
其内容包含了很多别的头文件。。
你这样2处都包含了#include "stdafx.h" 不会出现头文件重复包含吗?