3 つのリストがあるため、要素の順序が重要です。
names: [a, b, c, d]
files: [a-file, b-file, c-file, d-file]
counts: [a-count, b-count, c-count, d-count]
要素に基づいて、それらすべてをアルファベット順に並べ替える必要があります。
誰かがこれを行う方法を説明できますか?List<String> names
タプルを保持するクラスを作成します。
class NameFileCount {
String name;
File file;
int count;
public NameFileCount(String name, File file, int count) {
...
}
}
次に、3 つのリストのデータをこのクラスの 1 つのリストにグループ化します。
List<NameFileCount> nfcs = new ArrayList<>();
for (int i = 0; i < names.size(); i++) {
NameFileCount nfc = new NameFileCount(
names.get(i),
files.get(i),
counts.get(i)
);
nfcs.add(nfc);
}
name
カスタム コンパレータを使用して、このリストを で並べ替えます。
Collections.sort(nfcs, new Comparator<NameFileCount>() {
public int compare(NameFileCount x, NameFileCount y) {
return x.name.compareTo(y.name);
}
});
(プロパティ アクセサー、null チェックなどは、簡潔にするために省略されています。)