먼저 범주부터 나열하자면 다음과 같습니다. List 계열 : AbstractList, ArrayList, LinkedList, Vector Map 계열 : AbstractMap, Attributes, HashMap, Hashtable, IdentityHashMap, RenderingHints, TreeMap, WeakHashMap Set계열 : AbstractSet, HashSet, LinkedHashSet, TreeSet 위의 List, Map,Set은 모두 Collection이라는 interface를 상속받은 자식입니다.(인터페이스끼리 extend 할수있죠) 그리고 AbstractList, ArrayList, ... 등은 List 인터페이스를 구현(Implement)한 객체고 AbstractMap, ..