gpt4 book ai didi

Java 条件循环

转载 作者:行者123 更新时间:2023-11-30 06:40:26 25 4
gpt4 key购买 nike

我正在尝试循环对象,直到满足条件。

例如:

Input input = new inputFile(fileName);
input.nextMove(); // returns the next line - EOF returns null

所以我想做这样的事情:

for (int[] move = input.nextMove(); move != null) {
System.out.println(Arrays.toString(move));
}

即循环直到文件结束。

问题

遍历对象的最佳方式是什么?

最佳答案

这是一个典型的Iterator图案

while(iterator.hasNext()) {
T element = iterator.next();
}

根据您的情况,可以调整为

int[] move;
while((move = input.nextMove()) != null) {
System.out.println(Arrays.toString(move));
}

关于Java 条件循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58063145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com