Thursday 14 March 2013

java.util Stack


java.util
Stack

Declaration
public class Stack extends Vector
java.lang.Object
|
+--java.util.Vector
|
+--java.util.Stack
Description
The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with five
operations that allow a vector to be treated as a stack. The usual push and pop operations are provided, as well
as a method to peek at the top item on the stack, a method to test for whether the stack is empty, and a method
to search the stack for an item and discover how far it is from the top.
When a stack is first created, it contains no items.
Since: JDK1.0, CLDC 1.0
Member Summary
Constructors
Stack()
Methods
boolean empty()
java.lang.Object peek()
java.lang.Object pop()
java.lang.Object push(java.lang.Object item)
int search(java.lang.Object o)
Inherited Member Summary
Fields inherited from class Vector
capacityIncrement, elementCount, elementData
Methods inherited from class Object
equals(Object), getClass(), hashCode(), notify(), notifyAll(), wait(), wait(), wait()
Methods inherited from class Vector

No comments:

Post a Comment