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.
Javaの文字列セットのArrayListがあります
List<Set< String >> combinations;
セットのサイズに基づいてArrayListを昇順で並べ替える最良の方法は何ですか?
2つのSetインスタンスComparator<Set<String>>の結果を比較するを記述します。size()2番目の引数としてComparatorを使用するCollections.sortメソッドを使用します。
Comparator<Set<String>>
size()