向朋友们请教这个关于这个程序的问题.
#include<iostream.h>
class stack
{
int *top;
int *bottom;
int sz;
public:
stack(int sz1);
~stack()
{
delete[] bottom;
}
void push(int i);
int pop();
};
stack::stack(int sz1)
{
sz=sz1;
top=bottom=new int[sz];
}
void stack::push(int i)
{
if (top-bottom<sz)
*top++=i;
}
int stack::pop()
{
if (--top>=bottom)
return *top;
else
return 0;
}
void main()
{
stack s1(50);
stack s2=s1;
}