如何在Java中使用Collections.sort()?

如何在Java中使用Collections.sort()?,第1张

如何在Java中使用Collections.sort()?

使用此方法Collections.sort(List,Comparator)。实施比较器并将其传递

Collections.sort().

class RecipeCompare implements Comparator<Recipe> {    @Override    public int compare(Recipe o1, Recipe o2) {        // write comparison logic here like below , it's just a sample        return o1.getID().compareTo(o2.getID());    }}

然后使用

Comparator
as

Collections.sort(recipes,new RecipeCompare());


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5053235.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存