我希望用ASCII降序排序myVideoFile
,所以我可以得到結果newVideoFile.get(0)
是「d」,newVideoFile.get(1)
是「c」,newVideoFile.get(2)
是「b」,newVideoFile.get(3)
是「a」。有沒有一種簡單的方法來排序在java中的ASCII降序的ArrayList <>?
在java中有一種簡單的方法嗎?
List<String> myVideoFile=new ArrayList<>();
myVideoFile.add("a");
myVideoFile.add("b");
myVideoFile.add("c");
myVideoFile.add("d");
使用':
您也可以輕鬆打印出您的字符串和forech-statment測試Collections.sort'並傳遞'Collections.reverseOrder()'作爲比較器。 – aioobe
使用Collections.reverse(myVideoFile); – Husam
[按相反順序排序列表]的可能重複(http://stackoverflow.com/questions/18073590/sort-list-in-reverse-order) – 1615903