MFC項目中,我在stdafx.h文件中添加#include "ximage.h"(Cximage的一個頭文件),DrawObj.cpp文件引用
stdafx.h,編譯時報如下錯誤:
1>DrawObj.cpp(24): warning C4091: '' : ignored on left of 'const double' when no variable is declared
1>DrawObj.cpp(24): error C2143: syntax error : missing ';' before 'constant'
1>DrawObj.cpp(24): error C2059: syntax error : 'constant'
定位到DrawObj.cpp的代碼:
/* 常用的常量定義 */
21 const double INF = 1E200 ;
22 const double EP = 1E-10 ;
23 const int MAXV = 300 ;
24 const double PI = 3.14159265 ;
貌似也沒發現問題。我把stdafx.h中的#include "ximage.h"這句注釋掉,編譯通過了。
請問各位大神,這是什麼原因,怎麼解決。
把24行注釋掉看看還有沒有編譯錯誤
排除語句問題的話,那就是字符標點不符合要求的問題了