本帖最后由 李明伟 于 2012-3-11 18:07 编辑
public class UsingStack {
public static void main(String[] args) {
Student stu1=new Student();
Student stu2=new Student();
Student stu3=new Student();
//构造栈对象,使用类型限制,只能存储Student数据
Stack<Student> s = new Stack<Student>();
//1、2、3依次入栈
s.push(stu1);
s.push(stu2);
s.push(stu3);
//3、2、1依次出栈
System.out.println(s.pop());
System.out.println(s.pop());
System.out.println(s.pop());
}
}
|