尝试使用Collections.sort对我的数组进行排序但没有运气

时间:2018-11-17 02:14:28

标签: java arrays sorting compiler-errors

我已经使阵列波纹管,并且无法对其进行排序

String[] albums = {"Abbey Road - Beatles","Thriller - Michael Jackson",
    "Queen - News of the World","Gimme Shelter - The Rolling Stones",
    "Pink Floyd - The Dark Side of the Moon"};

使用Collections.sort(相册);给出错误:没有合适的sort(String [])

方法

我已经导入了java.util。*;但是此错误仍然存​​在

我仍在学习,不知道如何解决此问题或缺少的内容

1 个答案:

答案 0 :(得分:2)

您有一个数组(不是Collection)。您可以使用Arrays.sort(T[], Comparator<? super T>)对其进行排序。喜欢,

Arrays.sort(albums, Comparator.naturalOrder());