##1.java容器有哪些?
容器(java类中用来存放其他类对象的类),即集合
(1). Collection是单列集合类的顶层接口,其子类主要有List,Set和Queue接口。
List常见实现类有ArrayList,LinkList和Vector,其中Vector是线程安全的。Set常见实现类有HashSet和TreeSet。
Map是双列集合的顶层接口。Map常见实现类有HashMap,HashTable和TreeMap,
##1.java容器有哪些?
容器(java类中用来存放其他类对象的类),即集合
(1). Collection是单列集合类的顶层接口,其子类主要有List,Set和Queue接口。
List常见实现类有ArrayList,LinkList和Vector,其中Vector是线程安全的。Set常见实现类有HashSet和TreeSet。
Map是双列集合的顶层接口。Map常见实现类有HashMap,HashTable和TreeMap,