Constructor and Description |
---|
CarlStack()
Default constructor: creates an empty stack.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all items from the stack.
|
boolean |
isEmpty()
Returns whether the stack is empty.
|
static void |
main(java.lang.String[] args) |
T |
peek()
Returns the item on top of the stack, without removing it.
|
T |
pop()
Removes and returns the item from the top of this stack.
|
void |
push(T item)
Adds an item to the top of this stack.
|
public void push(T item)
Stack
public T pop()
Stack
public T peek()
Stack
public boolean isEmpty()
Stack
public void clear()
Stack
public static void main(java.lang.String[] args)