gpt4 book ai didi

java - 迭代器,当 hasNext() 等于 false 时做一些事情

转载 作者:行者123 更新时间:2023-11-29 05:34:24 25 4
gpt4 key购买 nike

我有一个遍历 ArrayList 的 while 循环,但我想在迭代到达此字符串列表中的最后一个字符串时执行某些操作。

这是怎么做到的?

Iterator<String> iterator = list.iterator();
while (iterator.hasNext()) {

//do stuff here
}

do something to list string in list?

最佳答案

在外部作用域中有一个局部变量来记住最后一项:

String last = null;
while (iterator.hasNext()) {
last = iterator.next();
}

... now last refers to the last item.

如果您想知道自己在循环中的最后一项,那么只需在调用 next() 之后使用 hasNext() 进行检查检索当前迭代的项目。

while (iterator.hasNext()) {
String s = iterator.next();
if (!iterator.hasNext()) {
// here s is guaranteed to refer to the last item
}
}

关于java - 迭代器,当 hasNext() 等于 false 时做一些事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20032382/

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