集合框架 一、Collection接口:单列集合,用来存储一个一个的对象 1.List接口:存储有序的,可重复的数据 (1)ArrayList,LinkedList,Vector 2.Set接口:存储无序的,不可重复的数据 (1)HashSet,LinkedHashSet,TreeSet 二、Map接口:双列集合,用来存储一对(key — value)一对的数据 (1)HashMap,LinkedHashMap,TreeMap,Hashtable,Properties