排序 多条件排序 先按Key1排序,再按Key2排序 collections .stream() .sorted(Comparator.comparingLong(this::getKey1).thenComparing(this::getKey2).reversed())