How to convert a Collection to List?

前端 未结 10 555
不知归路
不知归路 2020-12-07 09:04

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

10条回答
  •  星月不相逢
    2020-12-07 09:12

    Something like this should work, calling the ArrayList constructor that takes a Collection:

    List theList = new ArrayList(coll);
    

提交回复
热议问题