今天,当我获得一段已经使用了数百次的代码时,我很高兴地开始编码:
遍历一个Collection(这里是ArrayList)
由于某种原因,我实际上查看了Eclipse的自动完成选项,这让我感到奇怪:
在哪些情况下,以下循环比其他情况更好使用?
经典的数组索引循环:
for (int i = 0; i < collection.length; i++) {
type array_element = collection.get(index);
}
迭代器具有next()/ next():
for (Iterator iterator = collection.iterator(); iterator.hasNext();) {
type type = (type) iterator.next();
}
我最喜欢的是因为它写起来很简单:
for (iterable_type iterable_element : collection) {
}
for (Iterator<type> iterator = collection.iterator(); iterator.hasNext();) { type type = iterator.next(); }