c语言实现顺序栈出错【操作符"="左边的值须为 “左值“
数据结构
typedef struct GOBJ{
bool hoving;
int width;
int height;
int x;
int y;
IMAGE_PNG img;
}GOBJ;
typedef struct STACK{
int msize; // max size
int top; // stack top
GOBJ* st; // stack arr
}STACK;
// 顺序栈初始化
void arrStk(STACK* st,int size){
st->st = (GOBJ*)malloc(sizeof(GOBJ*)*size);
st->msize = size;
st->top = -1;
};
bool arrStkPush(STACK* st,GOBJ* gobj){
if(st->top == st->msize-1){
printf("the stk is full");
return false;
}else{
st->top = st->top + 1;
st->st + st->top = gobj; //!!!本行报错(~ ̄(OO) ̄)ブ
return true;
}
};
编译过程中报错:error C2106: '=' : left operand must be l-value
环境:vc++6 (作业要求)
求解麻烦了。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
比左右值更重要的问题是:栈中存储的到底是
GOBJ
还是指向GOBJ
的指针?从声明GOBJ* st
看你是要存储GOBJ
,而从malloc
的调用方式上看你又是要存GOBJ*
,然后就混乱了。如果你要存指针,那么
st
需要声明成GOBJ** st
,malloc
也不用强制类型转换了,然后那句入栈就可以用数组记号写成:提示你
st->st + st->top
并不是一个合法的左值,st->st + st->top
只是一个值,左值应该是一个可以引用的地址。From维基百科
你要不试试这样