IDEA提示:‘for‘‘while‘ loop replaceable with enhanced ‘for‘

Posted JavaEdge.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA提示:‘for‘‘while‘ loop replaceable with enhanced ‘for‘相关的知识,希望对你有一定的参考价值。

普通 for/while 循环可用增强 for 循环替换。
当普通 for/while 循环里用于条件判断的变量 i 在循环体内没有使用时,就会触发该提示。

增强 for 循环是 jdk 1.5 引入的语法糖,用法如下:

public void function(int[] arr) {
    for (int i : arr) {
        System.out.println(i);
    }
}

编译后:

public void function(int[] arr) {
    Iterator<Integer> iterator = Arrays.stream(arr).iterator();
    while (iterator.hasNext()) {
        System.out.println(iterator.next());
    }
}

迭代器是一种用于分离数据结构和遍历方式的设计模式,多在非线性数据结构定义不同遍历方式时使用(例如可以为一个二叉树提供 dfs 和 bfs 两种迭代方式,而这两种迭代方式的实现可以和二叉树自身实现分离)。

以上是关于IDEA提示:‘for‘‘while‘ loop replaceable with enhanced ‘for‘的主要内容,如果未能解决你的问题,请参考以下文章

Databricks (Azure) SQL 中的 For/Loop/While

[Bash Scripting LOOP]for, while. until

[Bash Scripting LOOP]for, while. until

Oracle循环的几种写法(GOTO 、FOR 、 WHILE 、LOOP)

Python里的while loop

cpp test for and while loop time cost respectively while std::chrono::high_resolution_clock