collection 썸네일형 리스트형 [JAVA] Java Collection 계열 사용시 Warning 제거방법 아래와 같은 코드는 컴파일시 Warning 메세지를 뿜어냅니다. import java.util.*; public class ArrayListGeneric { public static void main(String[] args) { ArrayList data = new ArrayList(); data.add("hello"); data.add("world"); Iterator it = data.iterator(); while (it.hasNext()) { String s = it.next(); System.out.println(s); } } } Warning 이라는 경고를 제거하기 위해서는 두가지 방법이 있습니다. Generic 을 이용하는 방법과 Annotation 을 이용하는 방법입니다. 먼저 Gener.. 더보기 이전 1 다음