求助啊!!MFC程序编写中,怎么用到结构体就错啊
struct point
{
int x;
int y;
};
class pt
{
void i();
point f[20];
};
void pt::i()
{
f[0].x=f[0].x+1;
}
void main()
{
}
这一段程序如果不在MFC中的CPP文档,运行是正确的,可为什么一在那里面运行就说我有错误,我晕倒啦
struct point
{
int x;
int y;
};
class pt
{
void i();
point f[20];
};
void pt::i()
{
f[0].x=f[0].x+1;
}
void main()
{
}
这一段程序如果不在MFC中的CPP文档,运行是正确的,可为什么一在那里面运行就说我有错误,我晕倒啦