Interface Enumeration (iterator 와 똑같은 기능임) Class StringTokenizer Class LinkedList 잘 안씀 ArrayList 써 Deque, List, Queue(대기를 탄다) Q자료구조 순서대로 들어감(선입선출) LIFO offer 많이 씀 peek() Retrieves, but does not remove, the head (first element) of this list. poll() Retrieves and removes the head (first element) of this list. while(!stack.isEmpty()) { System.out.println(stack.pop());//지움 //System.out.println(stack..