其他分享
首页 > 其他分享> > 集合

集合

作者:互联网

|-------Collection接口:单列集合,用来存储一个一个的对象。

    |-----List接口:存储有序的,可重复的数据

                |-----ArrayList、LinkedList、Vector

          |-----Set接口:存储无序的,不可重复的数据

     |-----HashSet、LinkedHashSet、TreeSet 

|--------Map:双列集合,用来存储一对(key--value)一对的数据

           |----HashMap、LinkedHashMap、TreeMap、HashTable、Properties

 

 

 

 

标签:存储,重复,接口,-----,集合,数据
来源: https://www.cnblogs.com/ixtao/p/16614209.html