Introduction - If you have any usage issues, please Google them yourself
编写一个类Stack(文件名为Stack.java),实现简单的栈(FILO)操作。
(1)成员函数有:
void put(int item)
int get()
boolean isEmpty()
boolean isFull()
(2)数据成员:
一个指出栈顶的指针top,及其他所需成员自定。
(3)同时写出测试程序TestStack.java,测试该类。