我对 C++ 很陌生,我正在使用数组编写一个 Stack 类。我正在尝试编译我的小程序,但出现以下错误:
Stack::pop : function must return a value.
我的功能是这样的:
int pop (){
if (top < 0){
cout << "The stack is empty";
return;
}
return stk [top--];
}