【JAVA】Collections辅助类的运用
程序员文章站
2024-03-20 09:37:34
...
package cn.sxt.collection;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* Collections辅助类的使用
* @author Administrator
*
*/
public class TestCollections {
public static void main(String[] args) {
List<String> list=new ArrayList<>();
for(int i=0;i<10;i++) {
list.add("chai "+i);
}
System.out.println(list);
Collections.shuffle(list);//随机排列list中的元素
System.out.println(list);
Collections.reverse(list);//逆序排列list中的元素
System.out.println(list);
Collections.sort(list);//按照递增的方式排序。自定义类的使用:Comparable接口
System.out.println(list);
System.out.println(Collections.binarySearch(list, "chai 5"));//查找元素,返回其位置
}
}
运行结果:
[chai 0, chai 1, chai 2, chai 3, chai 4, chai 5, chai 6, chai 7, chai 8, chai 9]
[chai 8, chai 6, chai 7, chai 1, chai 9, chai 0, chai 5, chai 4, chai 3, chai 2]
[chai 2, chai 3, chai 4, chai 5, chai 0, chai 9, chai 1, chai 7, chai 6, chai 8]
[chai 0, chai 1, chai 2, chai 3, chai 4, chai 5, chai 6, chai 7, chai 8, chai 9]
5