• Collection和Map是所有集合的父接口
    • Collection接口的子接口包括:Set接口和List接口
    • Map接口的主要实现类有HashMap,TreeMap,HashTable,ConcurrentHashMap和Properties
    • Set接口的实现类主要有:HashSet、TreeSet、LinkedHashSet
    • List接口的实现类主要有 ArrayList,LinkedList stack Vector