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