添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
乐观的黄花菜  ·  双击测试 - 哔哩哔哩·  1 年前    · 
销魂的大白菜  ·  如何在php ...·  1 年前    · 
//对字符串数字排序
Stream.of("123", "321", "132","312").sorted(Comparator.comparingInt(Integer::parseInt))
// 对Object属性排序
Stream.of(
new Exception("13"),
new Exception("1"),
new Exception("21"),
new Exception("3")
).sorted(Comparator.comparing(Exception::getMessage, Comparator.comparingInt(Integer::parseInt)));