JAVA集合类

list:arraylist,vector,linkedlist,其中vetctor线程同步,linkedlist插删翻遍
       基本上list都是基于array的;里面的元素都可以重复;
set:hashset,treeset;set不能够重复,set是基于map的;treeset是排序的

list和set是继承collection接口的,map不是

map:hashtable,hashmap,treemap;hashtable是线程同步的,map的key不能够重复,value可以;treemap是排序的

另外,没记错的话,list,set,map都是可以使用collections。sort()排序的

你可能感兴趣的:(java集合)