你可以自己封一个对全部元素从小到大排序的函数
java提供了默认对全部元素从小到大排序的函数sort(),也提供了重载的sort(),而且一看就是学的C++的:
public static <T> void sort(T[] a,int fromIndex, int toIndex, Comparator<? super T> c)
【 在 lushan5436 的大作中提到: 】
: 还真有不好的库
: 比如才入20的ranges,这个java 10年前就有的
: a.stream().groupBy(Student::getId).collect(Collectors.toList());
: ...................
--
FROM 222.129.205.*