collection map两大类集合
collection中有list 、queue、set.接口。
实现以上接口的类主要有ArrayList、linkList、hashSet、hashMap、LinkedhashSet、LinkedhashMap、TreeSet、treeMap
迭代器的使用:
List <string>list=new ArrayList<string>();
list.add(xxx)
list.add(xxx)
Iterator<string> it=list.iterator();
while(it.hasNext())
{
system.out.println(it.next())
}
map迭代器的推荐用法:
Map<string,string>map=new HashMap<string,string>();
map.put(xxx,xxx)
map.put(xxx,xxx)
while(map.Entry<string,string>entry : map.entrySet()){
system.out.println(entry.getKey(),entry.getValue())
}