Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は持っていList<String[]>ます。String[3]名前でアルファベット順に並べ替えてもらいたいのですが。そのような場合、コンパレータはどのように見えるべきですか?
List<String[]>
String[3]
試す
Collections.sort(list, new Comparator<String[]>() { public int compare(String[] o1, String[] o2) { return o1[3].compareTo(o2[3]); } });