(String args[])
| 46 | } |
| 47 | |
| 48 | public static void main(String args[]) { |
| 49 | Stack stack = new Stack(); |
| 50 | stack.push(1); |
| 51 | stack.push(2); |
| 52 | stack.push(3); |
| 53 | stack.push(4); |
| 54 | |
| 55 | while(!stack.isEmpty()) { |
| 56 | System.out.println(stack.peek()); |
| 57 | stack.pop(); |
| 58 | } |
| 59 | } |
| 60 | } |