标签:元素 shu shuffle map排序 reverse list code 方法 sort
提供了对Set、List和Map排序、填充和查找元素等辅助方法Collections.shuffle() 随机排列容器内元素
Collections.reverse() 逆序排列
Collections.sort() 递增排序
Collections.binarySearch() 查找元素,并返回元素的索引
List<String> list =new ArrayList<>();
Collections.reverse(list);
Collections.sort(list);
int f=Collections.binarySearch(list,"a2");
java Collections工具类辅助方法非Collection接口
标签:元素 shu shuffle map排序 reverse list code 方法 sort
原文地址:https://blog.51cto.com/14437184/2422161