Iterate with for loop or while loop?(使用 for 循环或 while 循环进行迭代?)
问题描述
我经常看到这样的代码:
I often see code like:
Iterator i = list.iterator();
while(i.hasNext()) {
...
}
但我这样写(当 Java 1.5 不可用或每个都不能使用时):
but I write that (when Java 1.5 isn't available or for each can't be used) as:
for(Iterator i = list.iterator(); i.hasNext(); ) {
...
}
因为
- 更短了
- 它将
i
保持在较小的范围内 - 它减少了混淆的机会.(
i
是否在尽管?i
在哪里声明?)
- It is shorter
- It keeps
i
in a smaller scope - It reduces the chance of confusion. (Is
i
used outside the while? Where isi
declared?)
我认为代码应该尽可能简单易懂,这样我只需要编写复杂的代码来完成复杂的事情.你怎么认为?哪个更好?
I think code should be as simple to understand as possible so that I only have to make complex code to do complex things. What do you think? Which is better?
来自:http://jamesjava.blogspot.com/2006/04/iterating.html
推荐答案
我更喜欢 for 循环,因为它还将迭代器的范围设置为仅 for 循环.
I prefer the for loop because it also sets the scope of the iterator to just the for loop.
这篇关于使用 for 循环或 while 循环进行迭代?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 for 循环或 while 循环进行迭代?


- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 获取数字的最后一位 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 转换 ldap 日期 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01