Java Iterator, HashMap과 지네릭스
볼빵빵오춘기
Iterator 클래스를 작성할 때, Object타입 대신 T와 같은 타입 변수를 사용한다. 예제 코드 import java.util.*; import static java.util.Collections.*; public class Try { public static void main(String[] args) { ArrayList list = new ArrayList(); list.add(new Student("자바왕", 1, 1)); list.add(new Student("자바짱", 1, 2)); list.add(new Student("홍길동", 2, 1)); Iterator it = list.iterator(); while (it.hasNext()) { // Student s = (Student)i..