Pops the uppermost element from the stack. @return the popped element
()
| 190 | * @return the popped element |
| 191 | */ |
| 192 | public int pop() { |
| 193 | return list[--size]; |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Pushes an element onto the stack. |
no outgoing calls
no test coverage detected