• longhaoyu189@gmail.com

月度归档 10-12

Java常用

使用Collections.reverse()方法倒序排列list中的元素

List<SysUser> list = new ArrayList<>();
// 使用Collections.reverse()方法倒序排列list中的元素
Collections.reverse(list);