是否可以在 Java 中合并迭代器?

时间:2023-02-25
本文介绍了是否可以在 Java 中合并迭代器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在 Java 中合并迭代器?我有两个迭代器,我想组合/合并它们,以便我可以一次迭代它们的元素(在同一个循环中)而不是两个步骤.那可能吗?

Is it possible to merge iterators in Java? I have two iterators and I want to combine/merge them so that I could iterate though their elements in one go (in same loop) rather than two steps. Is that possible?

请注意,两个列表中的元素数量可能不同,因此对两个列表进行一次循环不是解决方案.

Note that the number of elements in the two lists can be different therefore one loop over both lists is not the solution.

Iterator<User> pUsers = userService.getPrimaryUsersInGroup(group.getId());
Iterator<User> sUsers = userService.getSecondaryUsersInGroup(group.getId());

while(pUsers.hasNext()) {
  User user = pUsers.next();
  .....
}

while(sUsers.hasNext()) {
  User user = sUsers.next();
  .....
}

推荐答案

Guava(原 Google Collections)有 Iterators.concat.

Guava (formerly Google Collections) has Iterators.concat.

这篇关于是否可以在 Java 中合并迭代器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:如何实现 Iterable 接口? 下一篇:使用 for 循环或 while 循环进行迭代?

相关文章

最新文章