程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-ignored on left of const double when...

c++-ignored on left of const double when...

編輯:編程綜合問答
ignored on left of 'const double' when...

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行注釋掉看看還有沒有編譯錯誤
排除語句問題的話,那就是字符標點不符合要求的問題了

wh230308
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved