Collections.sort不会更改列表

时间:2019-03-10 19:44:26

标签: java android sorting collections custom-compare

我有一个游戏列表,希望按照得分的高低(降序)进行排序。我为此编写了这段代码;

public void OnResponse(Object response) {
    List<Game> games = (List<Game>)response;
    Collections.sort(games, new Comparator<Game>() {
        @Override
        public int compare(Game o1, Game o2) {
            if( o1.scores.size() > o2.scores.size()) {
                return 1;
            } else {
                return 0;
            }
        }
    });
    trendingGames = games;
    gridView = view.findViewById(R.id.trendingGrid);
    gridView.setAdapter(new TrendingAdapter(games, getContext()));
    view.findViewById(R.id.progressBar).setVisibility(View.GONE);
}

但是,当我检查调试器时,发现列表完全没有改变。

1 个答案:

答案 0 :(得分:0)

您可以使用Integer#compare来减轻生活负担,并确保遵守Comparator合同

@Override
public int compare(Game o1, Game o2) {
    int score1 = o1.scores.size();
    int score2 = o2.scores.size();
    return Integer.compare(score1, score2);
}