Iterator
- 用于遍历集合
- 遍历集合常用的方法有 foreach 和 iterator
使用 iterator 遍历集合
Iterator it = collection.iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
for (Iterator it = collection.iterator();it.hasNext();) {
System.out.println(it.next());
}
使用 foreach 遍历集合
for (String t : collection) {
System.out.println(t);
}
网友评论