初始化list

Posted juncaoit

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初始化list相关的知识,希望对你有一定的参考价值。

    public static void main(String[] args) {
        CyclicBarrier cyclicBarrier = new CyclicBarrier(2, () -> {
            System.out.println("====");
        });
        List<Integer> list = IntStream.rangeClosed(1, 100).boxed().collect(Collectors.toList());
        List<List<Integer>> partition = Lists.partition(list, 50);
        ExecutorService executorService = Executors.newFixedThreadPool(4);
        for (List<Integer> list1 : partition) {
            executorService.submit(()->{
                try {
                    Thread.sleep(2000);
                    cyclicBarrier.await();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                } catch (BrokenBarrierException e) {
                    e.printStackTrace();
                }
            });
        }
    }

  

以上是关于初始化list的主要内容,如果未能解决你的问题,请参考以下文章

Jekyll 偏移代码片段高亮的初始行

TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段

常见的代码片段

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

如何在使用cardview的片段中初始化gridlayoutmanager?

环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段