Collections与Arrays工具类
程序员文章站
2022-07-14 23:37:58
...
Collections
Collections和Collection不同,前者是集合的操作类,后者是集合接口。
Collections提供的静态方法:
addAll():批量添加
sort():排序
binarySearch():二分查找
fill():替换
shuffle():随机排序
reverse():逆序
public class CollectionsDemo {
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
list.add("af");
list.add("bg");
list.add("acssf");
list.add("bdfsdfsd");
Collections.addAll(list,"cefsdf","cf1","cg32");
System.out.println(list);
// list.sort(new Comparator<String>() {
// @Override
// public int compare(String o1, String o2) {
// if(o1.length()>o2.length()){
// return 1;
// }else if(o1.length()<o2.length()){
// return -1;
// }else{
// return 0;
// }
// }
// });
// System.out.println(list);
//
// Collections.sort(list);
// Collections.sort(list,new Comparator<String>() {
// @Override
// public int compare(String o1, String o2) {
// if(o1.length()>o2.length()){
// return 1;
// }else if(o1.length()<o2.length()){
// return -1;
// }else{
// return 0;
// }
// }
// });
// System.out.println(list);
//二分查找的时候需要先进行排序操作,如果没有排序的话,是找不到指定元素的
Collections.sort(list);
System.out.println(Collections.binarySearch(list,"acssf"));
Collections.fill(list,"mashibing");
System.out.println(list);
}
}
Arrays
Arrays提供了数组操作的工具类,包含很多方法
集合和数组之间的转换
数组转成list:
public class ArraysDemo {
public static void main(String[] args) {
// int[] array = new int[]{1,2,3,4,5};
List<Integer> ints = Arrays.asList(1,2,3,4,5);
//list转换成数组
Object[] objects = ints.toArray();
}
}