• List数组指定切割


    废话不多说直接上代码!

    public static void main(String[] args) {
            List<Integer> integers = Arrays.asList(1,2,3,4,5,6,7,8,9);
     
            List<List<Integer>> chopped = chopped(integers, 5);
     
            for (List<Integer> integerList : chopped) {
                System.out.println(integerList);
            }
     
        }
     
        // chops a list into non-view sublists of length L
        static <T> List<List<T>> chopped(List<T> list, final int L) {
            List<List<T>> parts = new ArrayList<>();
            final int N = list.size();
            for (int i = 0; i < N; i += L) {
                parts.add(new ArrayList<>(
                        list.subList(i, Math.min(N, i + L)))
                );
            }
            return parts;
        }
    
    
  • 相关阅读:
    jmeter工具应用1
    django1
    5.自动化测试模型
    4.清除cookie操作
    2.操作浏览器
    3.8种元素定位
    1.介绍与环境安装
    模块
    urllib库
    自动化测试PO模式
  • 原文地址:https://www.cnblogs.com/userzf/p/13776464.html
Copyright © 2020-2023  润新知