Java LinkedHashSet backwards iteration(Java LinkedHashSet 向后迭代)
问题描述
如何遍历 LinkedHashSet
从最后一项到第一项?
如果你想继续使用集合,你可以使用如下:
LinkedHashSet;设置 = ...链表<T>list = new LinkedList<>(set);迭代器<T>itr = list.descendingIterator();而(itr.hasNext()){T 项目 = itr.next();//做一点事}
如果您可以改用数组,可以查看 hvgotcodes 的答案.p>
How can I iterate through items of a LinkedHashSet
from the last item to the first one?
If you want to continue to use collections, you could use the following:
LinkedHashSet<T> set = ...
LinkedList<T> list = new LinkedList<>(set);
Iterator<T> itr = list.descendingIterator();
while(itr.hasNext()) {
T item = itr.next();
// do something
}
If you're fine with using an array instead, you could take a look at hvgotcodes' answer.
这篇关于Java LinkedHashSet 向后迭代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java LinkedHashSet 向后迭代
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01