sort()是Collections中的静态方法,用于对List容器中的元素排序. 如容器list中存储的是Integer对象 List<Integer> list =Arrays.asList(3, 2, 7, 5, 9, 6); System.out.println(Arrays.toString(list.toArray())); 输出结果为:[3, 2, 7, 5, 9, 6] 使用Collections.sort()对list排序 Collections.sort(list); Sy…