使用线程池创建线程

这篇博客介绍了如何在Java中创建一个符合阿里巴巴规范的线程池,并展示了如何使用ThreadPoolExecutor执行无返回值和有返回值的任务。通过Future获取Callable任务的执行结果,实现了异步计算并打印耗时。
摘要由CSDN通过智能技术生成
import java.util.concurrent.Callable;
import java.util.concurrent.Future;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
 
/**
 * 符合阿里巴巴规范的线程池
 */
public class ThreadPoolUtil {
 
    public static ThreadPoolExecutor threadPool;
 

    //无返回值
    public  static void execute(Runnable runnable){
        getThreadPool().execute(runnable);
    }

     // 有返回值
    public  static <T> Future<T> submit(Callable<T> callable){
      return  getThreadPool().submit(callable);
    }

     //线程池对象
    public static ThreadPoolExecutor getThreadPool() {
        if (threadPool != null) {
            return threadPool;
        } else {
            synchronized (ThreadPoolUtil.class) {
                if (threadPool == null) {
                    threadPool = new ThreadPoolExecutor(8, 16, 60, TimeUnit.SECONDS,
                            new LinkedBlockingQueue<>(32), new ThreadPoolExecutor.CallerRunsPolicy());
                }
                return threadPool;
            }
        }
    }
 
}
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;


public class Furture {
    public static void main(String[] args) throws ExecutionException, InterruptedException {


        //方式1 无返回值
        ThreadPoolUtil.execute(new Runnable() {
            @Override
            public void run() {

            }
        });

        //方式2 有返回值
        long start = System.currentTimeMillis();

        List<Future> futureList = new ArrayList();
            try {
                Future<String> messageFuture = ThreadPoolUtil.submit(new Callable<String>() {
                    @Override
                    public String call() throws Exception {

                        return "OK";
                    }
                });
                futureList.add(messageFuture);
            } catch (Exception e) {
                e.printStackTrace();
            }

        for (Future<String> message : futureList) {
           String messageData = message.get();
            System.out.println(messageData);
        }
        System.out.println(String.format("耗时%s毫秒", System.currentTimeMillis() - start));

    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值