最佳答案
我使用的是Apache集合库中的TreeBidiMap
。我想对doubles
的值进行排序。
我的方法是使用以下方法检索值的Collection
:
Collection coll = themap.values();
这很正常。
我现在想知道如何将/cast(不确定哪个是正确的)coll
转换为List
,以便它可以排序?
然后,我打算遍历已排序的List
对象,该对象应该是有序的,并使用themap.getKey(iterator.next())
从TreeBidiMap
(themap
)中获取适当的键,其中迭代器将遍历doubles
的列表。