对list集合中元素按照某个属性进行排序

Collections.sort(list,(test o1, test o2) -> {

   if (o1.getI() != o2.getI()) {

      return o1.getI() > o2.getI() ? -1 : 1;

   } else {

     return 0;

   }
});
posted @ 2021-10-13 18:32  喵师傅  阅读(122)  评论(0编辑  收藏  举报