使用 for 循环或 while 循环进行迭代?

2023-01-14Java开发问题
3

本文介绍了使用 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 is i 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 循环进行迭代?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

如何使用 JAVA 向 COM PORT 发送数据?
How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)...
2024-08-25 Java开发问题
21

如何使报表页面方向更改为“rtl"?
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)...
2024-08-25 Java开发问题
19

在 Eclipse 项目中使用西里尔文 .properties 文件
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)...
2024-08-25 Java开发问题
18

有没有办法在 Java 中检测 RTL 语言?
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)...
2024-08-25 Java开发问题
11

如何在 Java 中从 DB 加载资源包消息?
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)...
2024-08-25 Java开发问题
13

如何更改 Java 中的默认语言环境设置以使其保持一致?
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)...
2024-08-25 Java开发问题
13