Java中实现List分隔成子List详解
前言
在工作中经常遇到需要将数组分割成多个子数组,然后进行批量处理的需求。那有没有比较优雅的实现呢?
经过多次实践,总结出 ListUtils.partition 和 Lists.partition 两种较好实现 。下面对这两种实现分别进行说明。
一 ListUtils.partition 方法
1.1 引入依赖
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency>
1.2 代码演示
public static void main(String[] args) { //初始化数组 List<Integer> parList = new ArrayList<>(); IntStream.range(0, 30).forEach(parList::add); //分割成子数组 List<List<Integer>> subList = ListUtils.partition(parList, 10); //遍历子数组 subList.forEach(list -> { System.out.println(String.format("subList size:%s", list.size())); System.out.println(String.format("list:%s", list.toString())); }); }
1.3 输出结果
二 Lists.partition 方法
2.1 引入依赖
<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>29.0-jre</version> </dependency>
2.2 代码演示
public static void main(String[] args) { //初始化数组 List<Integer> parList = new ArrayList<>(); IntStream.range(0, 30).forEach(parList::add); //分割成子数组 List<List<Integer>> subList = Lists.partition(parList, 10); //遍历子数组 subList.forEach(list -> { System.out.println(String.format("subList size:%s", list.size())); System.out.println(String.format("list:%s", list.toString())); }); }
2.3 输出结果
三 源码分析
3.1 ListUtils.partition 源码分析
最终 ListUtils.partition 调用 ListUtils.Partition 方法来处理。
ListUtils.Partition 源码如下:
Partition 类作为 ListUtils 静态内部类继承 AbstractList 类。重写了 get 和 size方法。
3.2 Lists.partition 源码分析
Lists.partition 方法最终会调用 new Partition<>(list, size)。
Partition 类源码如下:
Partition 类作为 Lists 静态内部类继承 AbstractList 类。重写了 get 、 size、isEmpty 方法。
四 性能对比
由于Lists.partition和ListUtils.partition底层实现都是通过Partition类来实现,性能差不多。
总结
到此这篇关于Java中实现List分隔成子List详解的文章就介绍到这了,更多相关Java List分隔成子List内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
spring boot 配置freemarker及如何使用freemarker渲染页面
springboot中自带的页面渲染工具为thymeleaf 还有freemarker这两种模板引擎,本文重点给大家介绍spring boot 配置freemarker及如何使用freemarker渲染页面,感兴趣的朋友一起看看吧2023-10-10Idea springboot springCloud热加载热调试两种常用方式
这篇文章主要介绍了Idea springboot springCloud热加载热调试常用的两种方式,在项目开发的过程中,需要修改调试的时候偶每次都需要重启项目浪费时间,下面是我整理的两种常用的两种方式,需要的朋友可以参考下2023-04-04SpringBoot整合Redis、ApachSolr和SpringSession的示例
本篇文章主要介绍了SpringBoot整合Redis、ApachSolr和SpringSession的示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-02-02Java Synchronize下的volatile关键字详解
这篇文章主要介绍了Java Synchronize下的volatile关键字详解,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2021-03-03Java定时任务Timer、TimerTask与ScheduledThreadPoolExecutor详解
这篇文章主要介绍了Java定时任务Timer、TimerTask与ScheduledThreadPoolExecutor详解, 定时任务就是在指定时间执行程序,或周期性执行计划任务,Java中实现定时任务的方法有很多,本文从从JDK自带的一些方法来实现定时任务的需求,需要的朋友可以参考下2024-01-01
最新评论