Java中集合类的操作类Collections

举报
谢公子 发表于 2021/11/19 00:40:11 2021/11/19
【摘要】 Collections 是集合类的一个工具类,其提供了一系列静态方法,用于对集合中元素进行排序、搜索以及线程安全等各种操作1) 排序(Sort)     使用sort方法可以根据元素的自然顺序,对指定列表进行排序。列表中的所有元素都必须实现 Comparable 接口。或此列表内的所有元素都必须是使用指定比较器可相互...

Collections 是集合类的一个工具类,其提供了一系列静态方法,用于对集合中元素进行排序、搜索以及线程安全等各种操作
1) 排序(Sort)
    使用sort方法可以根据元素的自然顺序,对指定列表进行排序。列表中的所有元素都必须实现 Comparable 接口。或此列表内的所有元素都必须是使用指定比较器可相互比较的   Collections.sort(list , new Comparator(){ } );
2) 混排(Shuffling)
    混排算法所做的正好与 sort 相反: 它打乱在一个 List 中可能有的任何排列的踪迹。也就是说,基于随机源的输入重排该 List, 这样的排列具有相同的可能性(假设随机源是公正的)。这个算法在实现一个碰运气的游戏中是非常有用的。例如,它可被用来混排代表一副牌的 Card 对象的一个 List 。另外,在生成测试案例时,它也是十分有用的。Collections.Shuffling(list)
3) 反转(Reverse)
    使用Reverse方法可以将元素进行反转。Collections.reverse(list)
4) 替换所有的元素(Fill)
     使用指定元素替换指定列表中的所有元素。Collections.fill(li,"aaa");
5) 拷贝(Copy)
    用两个参数,一个目标 List 和一个源 List, 将源的元素拷贝到目标,并覆盖它的内容。目标 List 至少与源一样长。如果它更长,则在目标 List 中的剩余元素不受影响。Collections.copy(list,li): 后面一个参数是目标列表 ,前一个是源列表
6) 返回Collections中最小元素(min)
    根据指定比较器产生的顺序,返回给定 collection 的最小元素。collection 中的所有元素都必须是通过指定比较器可相互比较的
Collections.min(list)
7) 返回Collections中最大元素(max)
     根据指定比较器产生的顺序,返回给定 collection 的最大元素。collection 中的所有元素都必须是通过指定比较器可相互比较的
  Collections.max(list)
8) lastIndexOfSubList
    返回指定源列表中最后一次出现指定目标列表的起始位置,int count = Collections.lastIndexOfSubList(list,li);
9) IndexOfSubList
    返回指定源列表中第一次出现指定目标列表的起始位置,int count = Collections.indexOfSubList(list,li);
10) Rotate
根据指定的距离循环移动指定列表中的元素,Collections.rotate(list,-1);如果是负数,则正向移动,正数则方向移动

Student类


  
  1. public class Student implements Comparable<Student> {
  2. int id;
  3. public Student(){ //无参构造函数
  4. }
  5. public Student(int id){ //有参构造函数
  6. this.id=id;
  7. }
  8. public int compareTo(Student o){
  9. return this.id-o.id;
  10. }
  11. }

主类


  
  1. import java.util.ArrayList;
  2. import java.util.Collections;
  3. public class Main {
  4. public static void main(String[] args) {
  5. ArrayList<Student> ss = new ArrayList<Student>();
  6. ss.add(new Student(5)); //增加一个元素
  7. ss.add(new Student(3)); //增加一个元素
  8. ss.add(new Student(7)); //增加一个元素
  9. ss.add(new Student(1)); //增加一个元素
  10. for(Student s:ss){
  11. System.out.println(s.id);
  12. }
  13. System.out.println("-----------排序-----------");
  14. Collections.sort(ss);
  15. for(Student s:ss){
  16. System.out.println(s.id);
  17. }
  18. System.out.println("-----------反转-----------");
  19. Collections.reverse(ss);
  20. for(Student s:ss){
  21. System.out.println(s.id);
  22. }
  23. System.out.println("-----------混排-----------");
  24. Collections.shuffle(ss);
  25. for(Student s:ss){
  26. System.out.println(s.id);
  27. }
  28. System.out.println("-----------返回最小元素-----------");
  29. Student min = Collections.min(ss);
  30. System.out.println(min.id);
  31. System.out.println("-----------返回最大元素-----------");
  32. Student max = Collections.max(ss);
  33. System.out.println(max.id);
  34. }
  35. }

运行截图

相关文章:Java中的集合类

 

文章来源: xie1997.blog.csdn.net,作者:谢公子,版权归原作者所有,如需转载,请联系作者。

原文链接:xie1997.blog.csdn.net/article/details/107373035

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。