一.总体分类 Collection(包括方法add,remove,contains,clear,size) List(接口) LinkedList ArrayList Vector---Stack 2. Set HashSet TreeSet Map Hashtable---properties HashMap TreeMap 二.Map接口:元素以键值对的方式存放(无序) HashMap:键不能重复,当添加重复的时候,会将原来的值覆盖掉 键和值都可为空 HashTable:线程安全 键不能空,…