ArrayList와 HashMap의 차이점 (Java Collection)
1. Collection List 계열 : AbstractList, ArrayList, LinkedList, Vector Map 계열 : AbstractMap, Attributes, HashMap, Hashtable, IdentityHashMap, RenderingHints, TreeMap, WeakHashMap Set계열 : AbstractSet, HashSet, LinkedHashSet, TreeSet Collection, List, Map,Set은 모두 구현되지 않은 interface 계열로 내려가 구현된 Class를 사용해서 정의 ex) List a = new ArrayList(); * 다형성(부모는 여러가지 자식의 형태로 나타날 수 있다). List a = new List(); * error :..
더보기