线程池实现十个线程共同执行一个任务

----原文地址:https://blog.csdn.net/micro_hz/article/details/73865016

线程池:多个线程执行一个任务

应用场景:

当有一个批量任务要执行的时候,一个线程执行耗时比较长,分为十个甚至多个线程来执行缩短执行时间;

package threadPool;

import java.util.List;
import java.util.concurrent.*;

public class ExecuteServiceDemo {

    public static void main(String [] args){
        List list = new CopyOnWriteArrayList<>();

        ExecutorService executorService = Executors.newCachedThreadPool();
        CompletionService<String> completionService = new ExecutorCompletionService(executorService);
        ExecuteServiceDemo executeServiceDemo = new ExecuteServiceDemo();
        // 十个
        long startTime = System.currentTimeMillis();
        int count = 0;
        for (int i = 0;i < 10;i ++) {
            count ++;
            GetContentTask getContentTask = new ExecuteServiceDemo.GetContentTask("micro" + i, 10);
            completionService.submit(getContentTask);
        }
        System.out.println("提交完任务,主线程空闲了, 可以去做一些事情。");
        // 假装做了8秒种其他事情
        try {
            Thread.sleep(8000);
            System.out.println("主线程做完了,等待结果");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        try {
            // 做完事情要结果
            for (int i = 0;i < count;i ++) {
                Future<String> result = completionService.take();
                System.out.println(result.get());
            }
            long endTime = System.currentTimeMillis();
            System.out.println("耗时 : " + (endTime - startTime) / 1000);
        }  catch (Exception ex) {
            System.out.println(ex.getMessage());
        }
    }

    static class GetContentTask implements Callable<String> {

        private String name;

        private Integer sleepTimes;

        public GetContentTask(String name, Integer sleepTimes) {
            this.name = name;
            this.sleepTimes = sleepTimes;
        }
        public String call() throws Exception {
            // 假设这是一个比较耗时的操作
            Thread.sleep(sleepTimes * 1000);
            return "当前线程:"+Thread.currentThread().getName()+"this is content : hello " + this.name;
        }

    }


}

猜你喜欢

转载自www.cnblogs.com/loverqian/p/9164187.html