如何将集合转换为列表?
我正在使用 Apache Collections 库中的 TreeBidiMap
。 我想对双精度值进行排序。
我的方法是使用以下方法检索值的 Collection
:
Collection coll = themap.values();
这自然可以正常工作。
主要问题:我现在想知道如何将(不确定哪个是正确的)coll
转换/转换为List
,以便它可以排序了吗?
然后,我打算迭代排序的 List
对象,该对象应该按顺序排列,并使用 TreeBidiMap
(themap
) 获取适当的键code>themap.getKey(iterator.next()) 其中迭代器将位于 doubles
列表上。
I am using TreeBidiMap
from the Apache Collections library. I want to sort this on the values which are doubles
.
My method is to retrieve a Collection
of the values using:
Collection coll = themap.values();
Which naturally works fine.
Main Question: I now want to know how I can convert/cast (not sure which is correct) coll
into a List
so it can be sorted?
I then intend to iterate over the sorted List
object, which should be in order and get the appropriate keys from the TreeBidiMap
(themap
) using themap.getKey(iterator.next())
where the iterator will be over the list of doubles
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
正如 Erel Segal Halevi 在下面所说,如果 coll 已经是一个列表,您可以跳过第一步。 但这取决于 TreeBidiMap 的内部结构。
As Erel Segal Halevi says below, if coll is already a list, you can skip step one. But that would depend on the internals of TreeBidiMap.
像这样的东西应该可以工作,调用 ArrayList 构造函数 接受一个 Collection:
Something like this should work, calling the ArrayList constructor that takes a Collection:
我相信你可以这样写:
I believe you can write it as such:
我认为如果 coll 已经是一个列表,Paul Tomblin 的答案可能是浪费的,因为它将创建一个新列表并复制所有元素。 如果 coll 包含许多元素,这可能需要很长时间。
我的建议是:
I think Paul Tomblin's answer may be wasteful in case coll is already a list, because it will create a new list and copy all elements. If coll contains many elemeents, this may take a long time.
My suggestion is:
Java 10 引入了
List#copyOf
,它返回不可修改的 List,同时保留顺序:Java 10 introduced
List#copyOf
which returns unmodifiable List while preserving the order:Java 8 及以上...
您可以使用 Streams 和 Collectors.toCollection( )。
考虑以下示例映射
到 ArrayList
到已排序的ArrayList(升序)
到已排序的ArrayList(降序)
到 LinkedList
到 HashSet
到 PriorityQueue
参考
Java - 包 java.util.stream
Java - 包 java.util
Java 8 onwards...
You can convert Collection to any collection (i.e, List, Set, and Queue) using Streams and Collectors.toCollection().
Consider the following example map
to ArrayList
to Sorted ArrayList (Ascending order)
to Sorted ArrayList (Descending order)
to LinkedList
to HashSet
to PriorityQueue
Reference
Java - Package java.util.stream
Java - Package java.util
@Kunigami:我认为您可能对 Guava 的 newArrayList 方法有误解。 它不会检查 Iterable 是否是 List 类型,而只是按原样返回给定的 List。 它总是创建一个新列表:
@Kunigami: I think you may be mistaken about Guava's
newArrayList
method. It does not check whether the Iterable is a List type and simply return the given List as-is. It always creates a new list:您请求的是一个相当昂贵的操作,请确保您不需要经常执行此操作(例如在一个周期中)。
如果您需要它保持排序并且经常更新,您可以创建自定义集合。 例如,我想出了一个在引擎盖下包含
TreeBidiMap
和TreeMultiset
的方案。 仅实施您需要的内容并关心数据完整性。这样,您就可以从
values()
返回一个已排序Multiset
。 但是,如果您需要它是一个列表(例如,您需要类似数组的get(index)
方法),则需要更复杂的东西。为了简洁起见,我只返回不可修改的集合。 @Lino 提到的是正确的,按原样修改
keySet
或values
集合会使其不一致。 我不知道有什么一致的方法可以使values
可变,但是keySet
如果使用remove< 则可以支持
remove
上面的MyCustomCollection
类中的 /code> 方法。What you request is quite a costy operation, make sure you don't need to do it often (e.g in a cycle).
If you need it to stay sorted and you update it frequently, you can create a custom collection. For example, I came up with one that has your
TreeBidiMap
andTreeMultiset
under the hood. Implement only what you need and care about data integrity.This way, you have a sorted
Multiset
returned fromvalues()
. However, if you need it to be a list (e.g. you need the array-likeget(index)
method), you'd need something more complex.For brevity, I only return unmodifiable collections. What @Lino mentioned is correct, and modifying the
keySet
orvalues
collection as it is would make it inconsistent. I don't know any consistent way to make thevalues
mutable, but thekeySet
could supportremove
if it uses theremove
method from theMyCustomCollection
class above.使用流:
Use streams:
这是一个次优解决方案:
Here is a sub-optimal solution as a one-liner: