📄 stack.java
字号:
package java.util;/** $Log: Stack.java,v $* Revision 1.2 2005/11/23 17:46:45 mpscholz* minor javadoc related changes** Revision 1.1 2003/08/17 14:59:42 mpscholz* enhanced Vector* added Stack and Queue and associated exception classes**///////////////////////////////////////////////////////////** * A LIFO stack of objects. * TODO recycable */public class Stack extends Vector { //////////////////////////////////////////// // constants //////////////////////////////////////////// //////////////////////////////////////////// // fields //////////////////////////////////////////// //////////////////////////////////////////// // constructors //////////////////////////////////////////// //////////////////////////////////////////// /** * creates a new Stack instance */ public Stack() { // do nothing } // Stack() //////////////////////////////////////////// /** * pushes an object onto the stack * @param anObject the object * @return Object the object pushed onto the stack */ public Object push(Object anObject) { // add the object to base vector addElement(anObject); return anObject; } // push() //////////////////////////////////////////// /** * fetches an object from the top of the stack * and removes it * @return Object the object removed from the top of the stock * @throws EmptyStackException */ public synchronized Object pop() throws EmptyStackException { // get object Object popped = peek(); // remove and return object removeElementAt(size() - 1); return popped; } // pop() //////////////////////////////////////////// /** * fetches an object from the stack * <br>does not remove it! * @return Object the object at the top of the stack * @throws EmptyStackException */ public synchronized Object peek() throws EmptyStackException { // size of stack int sizeOfStack = size(); // empty stack? if(sizeOfStack==0) throw new EmptyStackException(); // return top element return elementAt(sizeOfStack-1); } // peek() //////////////////////////////////////////// /** * is this stack empty? * @return boolean true, if the stack is empty */ public boolean empty() { return (size()==0); } // empty()} // class Stack
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -