码迷,mamicode.com
首页 > 其他好文 > 详细

将list集合按指定长度进行切分,返回新的List<List<??>>集合

时间:2020-03-02 20:46:46      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:nbsp   print   sys   sts   stl   integer   array   war   lists   

Lists.partition

public class testList {
 
    @Test
    public void  test(){
        List<Integer> numList = Lists.newArrayList(1, 2, 3, 4, 5, 6, 7, 8);
 
        List<List<Integer>> lists=Lists.partition(numList,3);
        System.out.println(lists);//[[1, 2, 3], [4, 5, 6], [7, 8]]
 
    }
}

 

将list集合按指定长度进行切分,返回新的List<List<??>>集合

标签:nbsp   print   sys   sts   stl   integer   array   war   lists   

原文地址:https://www.cnblogs.com/niudaben/p/12397553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!