1) Iterator (반복자) Enumeration 2) stack 과 Queue 3) 입출력 스트림 텍스트가 아닌 파일은 반드시 FileInputStream , FileOutputStream 이용 1) Iterator (반복자) Enumeration * Iterator 인터페이스 : 반복자 ITerator() : Collection 객체는 Iterator 객체로 변환이 가능함주요메서드 boolean HasNext() : 조회할요소가있는가 Object next(); ㅣ 조회대상 객체리턴 void remove(); : 조회된 객체를 제거 . next() 실행 이후에가능 public class IterartorEx1 { public static void main(String[] arg..