Java的集合主要有List , Set, Map List , Set继承至Collection接口,Map为独立接口 List下有ArrayList,LinkedList,Vector Set下有HashSet,LinkedHashSet,TreeSetMap下有HashMap,LinkedHashMap, TreeMap,Hashtable 总结:Connection接口: 1.List 有序,可重复 ArrayList:优点: 底层数据结构是数组,查询快,增删慢.缺点: 线程不安全,效率…