sort a List<Tuple> from highest to lowest
List<Tuple<String, int[], int>>
I want to 开发者_如何学编程sort the List
by the int
from highest to lowest.
java.util.Collections.sort(list, Comparator)
You will need to write a Comparator<Tuple<String, int[], int>>
精彩评论