Collections集合工具的使用

 List list =new ArrayList();
        list.add("JavaME");
        list.add("Hello");
        list.add("Bye");
        System.out.println(list);
        Collections.addAll(list,"Java","JavaEE","JavaSE");//向集合中添加元素
        System.out.println("########################");
        System.out.println(list);
        System.out.println("######################");
        Collections.reverse(list);//將list集合中的元素倒序排列
        System.out.println(list);
        System.out.println("##################");
        Collections.swap(list,1,3);//將集合中下標爲1和下標爲3的交換位置
        System.out.println(list);
        System.out.println("######################");
        Collections.sort(list);//將集合中的元素排序
        System.out.println(list);
        System.out.println("#######################");
        int index=Collections.binarySearch(list,"Hello");//檢索元素在集合中的下標 也能夠根據index的值判斷元素是否存在於數組中
        if (index>0){
            System.out.println("Hello元素存在於集合中,下標爲"+index);
        }else {
            System.out.println("元素Hello不存在");
        }
        System.out.println("###############");
        Collections.replaceAll(list,"Hello","你好");//將集合中的元素v1替換爲元素v2
        System.out.println(list);
        Collections.max(list);//集合中的最大元素
        Collections.min(list);//集合中的最小元素
相關文章
相關標籤/搜索