私は作成したいスコアシステムを持っています。そこにはスコアの高い順から低い順にプレイヤーのリストがあります。ArrayListオブジェクトの特定の値を使用してArrayListをソートしますか?
マイPlayerObject.classクラス:
public class PlayerObject {
private String playerName;
private int playerScore;
public int getScore() {
return this.playerScore;
}
public String getName() {
return this.playerName;
}
public void setNameAndScore(String givenName, int givenScore) {
this.playerName = givenName;
this.playerScore = givenScore;
}
}
マイアレイ:
ArrayList<PlayerObject> allPlayers = new ArrayList<PlayerObject>();
私は彼らのplayerScore属性に基づいて、配列リスト内の各選手を並べ替えることができますどのように任意のアイデア?
ありがとうございます!
可能な複製](https://stackoverflow.com/questions/2784514/sort-arraylist-of-custom-objects-by-property) – Zabuza