求助?
#include <iostream.h>
#include <iomanip.h>
class Stack1
{
public:
int date[4];
int top;
public:
Stack1(){ top = -1;}
~Stack1(){}
void push(int in);
int pop();
int full();
int empty();
};
void Stack1::push(int in)
{
if(!full());
date[++top] = in;
}
Stack1::pop()
{
if(!empty());
return date[top--];
}
Stack1::full()
{
return top = 3;
}
Stack1::empty()
{
return top = -1;
}
void main()
{
Stack1 a;
int i;
for(i=1;i<5;i++)
a.push(i);
for(i=0;i<4;i++)
cout << setw(5) << a.pop();
cout << endl;
}
怎么得不到正确结果?