Java便提供了此方法如下:
import java.util.Stack;
public class StackDemo {
public static void main(String [] args){
Stack stack = new Stack();
stack.push(1);
stack.push(2);
while(!stack.empty()){
System.out.println(stack.pop());
}
}
}
沒有留言:
張貼留言