Is it possible to merge iterators in Java?

后端 未结 14 1873
自闭症患者
自闭症患者 2020-11-30 08:14

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) rathe

14条回答
  •  醉话见心
    2020-11-30 09:06

    an iterator comes FROM a collection or a set.
    why not use the method already available
    Collection.addAll(Collection c);
    and then create your iterator from the last object.
    this way, your iterator will iterate all the contents of both collection.

提交回复
热议问题