如何将集合转换为列表?
2022-08-31 04:56:27
我正在使用Apache Collections库。我想根据.TreeBidiMap
doubles
我的方法是使用以下命令检索一个值:Collection
Collection coll = themap.values();
这自然工作正常。
主要问题:我现在想知道如何将/投射(不确定哪个是正确的)转换为可以排序?coll
List
然后,我打算迭代排序的对象,该对象应该是有序的,并使用迭代器在 列表中的位置从 () 中获取适当的键。List
TreeBidiMap
themap
themap.getKey(iterator.next())
doubles