正序
collection.stream().sorted(Comparator.comparing(MyClass::getProp));
倒序 desc
collection.stream().sorted(Comparator.comparing(MyClass::getProp)).reversed();
collection.stream().sorted(Comparator.comparing(MyClass::getProp));
collection.stream().sorted(Comparator.comparing(MyClass::getProp)).reversed();