标签: java collections
我有两个集合:coll1和coll2。我需要一个集合coll,这是两者的结合,但我不想分配新的集合。我只是coll代表两个集合的视图,并将调用转发给它们。
coll1
coll2
coll
是否有提供此功能的库?
答案 0 :(得分:0)
也许Guava的Iterables.concat会满足您的需求?
Iterables.concat
https://docs.guava-libraries.googlecode.com/git-history/release/javadoc/com/google/common/collect/Iterables.html#concat(java.lang.Iterable)