Collections.sort(list, (l1, l2) -> l1.getID().compareTo(l2.getID()));

list:泛型集合
l1:比较的前一个泛型
l2:比较的后一个泛型
l1.getID() 和 l2.getID() 比较的具体内容
04-30 12:06