问题描述
- 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行注释掉看看还有没有编译错误
排除语句问题的话,那就是字符标点不符合要求的问题了
解决方案二:
ASPX:
C#
protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
int index = e.Item.ItemIndex; //Get the index of......
答案就在这里:How to get the data from a cell when I click on the GridButtonColumn of the same row
时间: 2025-01-20 12:59:44