欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JAVA多线程处理for循环

程序员文章站 2022-04-07 18:04:27
public static void main(String[] args) { long start = System.currentTimeMillis(); List list = new ArrayList(); for (int i = 0; i < 1000; i++) { list.add(i); } //定义线程数量为20,可根据服务器配置适当调整大小...
public static void main(String[] args) {
        long start = System.currentTimeMillis();
        List<Integer> list = new ArrayList();
        for (int i = 0; i < 1000; i++) {
            list.add(i);
        }
        //定义线程数量为20,可根据服务器配置适当调整大小        
        Thread(list, 20);
        long end = System.currentTimeMillis();
        System.out.println("总时间 = " + (end - start));
    }
//此处有加锁,不需要的同学可以自行改造
public synchronized static <T> void Thread(List<T> list, int nThread) {
        if (CollectionUtils.isEmpty(list) || nThread <= 0 || CollectionUtils.isEmpty(list)) {
            return;
        }
        Semaphore semaphore = new Semaphore(nThread);//定义几个许可
        ExecutorService executorService = Executors.newFixedThreadPool(nThread);//创建一个固定的线程池
        for (T number : list) {
            try {
                semaphore.acquire();
                executorService.execute(() -> {
                //此处可以放入待处理的业务
                System.out.println("number:" + number);
                semaphore.release();
                });
            } catch (InterruptedException e) {

            }
        }
        executorService.shutdown();
    }

在数据量大的情况下对比直接循环效果很明显。用上之后又可以加鸡腿了~

本文地址:https://blog.csdn.net/JST888_K/article/details/111865941

相关标签: 多线程 java