对list集合中元素按照某个属性进行排序
Collections.sort(list,(test o1, test o2) -> {
if (o1.getI() != o2.getI()) {
return o1.getI() > o2.getI() ? -1 : 1;
} else {
return 0;
}
});
本文来自博客园,作者:喵师傅,转载请注明原文链接:https://www.cnblogs.com/wywblogs/articles/15403466.html