is collections.sort method only used for List type of collections?

前端 未结 7 537
予麋鹿
予麋鹿 2021-01-06 03:37

friends, I am new to Java-Collection. I want to ask does Collections.sort() method only used for/by collections which are List type. I was unable t

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-06 04:03

    sort(List list) of Collections is the original method which expects of type List. But To sort Set basically we use TreeSet, which sorts elements by the help of compare() or compareTo() methods of Comparator and Comparable interfaces respectively.

提交回复
热议问题