Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 Collections2.filter 返回的集合是不可修改的,它的迭代器也是如此。有没有类似的东西可以返回我过滤的集合实时视图,但带有可修改的迭代器?我需要remove()在迭代器上使用方法。
remove()
谢谢。
怎么样new ArrayList(Collections2.filter(...))?如果您出于某种原因坚持使用过滤器。
new ArrayList(Collections2.filter(...))
顺便说一句,Collections2.filter不是不可修改的。它是只允许Predicate逻辑元素的集合。
Collections2.filter
Predicate