Java集合

 java中的集合,无序Set,有序List,有映射关系的Map,以及Queue。

常用集合类:HashSet,TreeSet,ArrayList,ArrayDeque,LinkedList,HashMap,TreeMap

Set,List,Queue实现了Collection接口(这个接口通常和Iterator一起使用来实现迭代器模式)

http://docs.oracle.com/javase/8/docs/api/

原文地址:https://www.cnblogs.com/lzhp/p/5225238.html