java和-- Collections工具类
2021/11/3 17:10:00
本文主要是介绍java和-- Collections工具类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Collections工具类
package cn.usts.edu.collections; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; /** * @author :fly * @description: 集合工具类 * @date :2021/11/3 16:20 */ public class CollectionsDemo { public static void main(String[] args) { ArrayList al = new ArrayList(); al.add("tom"); al.add("tom"); al.add("jack"); al.add("al"); al.add("swallow"); System.out.println("正常顺序"); System.out.println(al); // 位置交换 System.out.println("=========0,最后 位置交换======="); Collections.swap(al,0,al.size()-1);// 0,最后 位置交换 System.out.println(al); System.out.println("=========逆序======="); Collections.reverse(al); System.out.println("逆序:"+al); // 随机排序 System.out.println("=========随机排序======="); Collections.shuffle(al); System.out.println(al); // 自然顺序 System.out.println("=========自然顺序======="); Collections.sort(al); System.out.println(al); // 自定义排序 System.out.println("=========自定义排序(字符大到小)======="); Collections.sort(al, new Comparator() { @Override public int compare(Object o1, Object o2) { if(o1 instanceof String) { // 校验是否是String return ((String) o2).compareTo((String) o1); } return 0; } }); System.out.println(al); System.out.println("=========自定义排序(长度大到小)======="); Collections.sort(al, new Comparator() { @Override public int compare(Object o1, Object o2) { return ((String) o2).length() - (((String) o1).length()); } }); System.out.println(al); // 自然排序最大值 System.out.println("=========自定义(长度最大)======="); Object max = Collections.max(al, new Comparator() { @Override public int compare(Object o1, Object o2) { return ((String) o1).length() - (((String) o2).length()); } }); System.out.println(max); // 自定义最大值 System.out.println("=========自然排序最大值======="); Comparable max1 = Collections.max(al); System.out.println(max1); // 同理max(),自定义也同理 // Collections.min(); // 出现次数 System.out.println("=========出现次数======="); int tomTimes = Collections.frequency(al, "tom"); System.out.println("tom出现:"+tomTimes+"次"); // 复制 System.out.println("=========复制数组======="); ArrayList bal = new ArrayList(); for (Object o : al) { bal.add(""); // 新的数组默认为零,不填充空的数据,回报数组Index越界 } Collections.copy(bal,al); System.out.println(bal); //替换 System.out.println("=========替换元素======="); Collections.replaceAll(al,"tom","汤姆"); System.out.println(al); } }
这篇关于java和-- Collections工具类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-30java最新版本是什么,有什么特性?-icode9专业技术文章分享
- 2024-11-30[开源]27.8K star!这款 Postman 替代工具太火了!
- 2024-11-30Gzip 压缩入门教程:轻松掌握文件压缩技巧
- 2024-11-29开源工具的魅力:让文档管理更“聪明”
- 2024-11-29Release-it开发入门教程
- 2024-11-29Rollup 插件入门教程:轻松掌握模块打包
- 2024-11-29从零到一,产品经理如何玩转项目管理和团队协作
- 2024-11-29如何通过精益生产管理工具帮助项目团队实现精准进度控制?
- 2024-11-29低代码应用开发课程:新手入门与基础教程
- 2024-11-29入门指南:全栈低代码开发课程