当前位置:
首页 >
工作中如何使用线程池的?自己如何定义一个线程池?
发布时间:2025/4/16
27
豆豆
生活随笔
收集整理的这篇文章主要介绍了
工作中如何使用线程池的?自己如何定义一个线程池?
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
工作中如何使用线程池的?自己如何定义一个线程池?
import java.util.concurrent.*;public class MyThreadPoolDemo {public static void main(String[] args) {ExecutorService threadPool = new ThreadPoolExecutor(2,5,1L,TimeUnit.SECONDS,new LinkedBlockingDeque<Runnable>(3),Executors.defaultThreadFactory(),//默认抛出异常 // new ThreadPoolExecutor.AbortPolicy()//回退调用者new ThreadPoolExecutor.CallerRunsPolicy()//处理不来的不处理//new ThreadPoolExecutor.DiscardOldestPolicy() // new ThreadPoolExecutor.DiscardPolicy());//模拟10个用户来办理业务 没有用户就是来自外部的请求线程.try {for (int i = 1; i <= 10; i++) {threadPool.execute(() -> {System.out.println(Thread.currentThread().getName() + "\t 办理业务");});}} catch (Exception e) {e.printStackTrace();} finally {threadPool.shutdown();}//threadPoolInit();}private static void threadPoolInit() {/*** 一池5个处理线程*///ExecutorService threadPool= Executors.newFixedThreadPool(5);/*** 一池一线程*///ExecutorService threadPool= Executors.newSingleThreadExecutor();/*** 一池N线程*/ExecutorService threadPool = Executors.newCachedThreadPool();//模拟10个用户来办理业务 没有用户就是来自外部的请求线程.try {for (int i = 1; i <= 20; i++) {threadPool.execute(() -> {System.out.println(Thread.currentThread().getName() + "\t 办理业务");});try {TimeUnit.MICROSECONDS.sleep(200);} catch (InterruptedException e) {e.printStackTrace();}}} catch (Exception e) {e.printStackTrace();} finally {threadPool.shutdown();}} }
总结
以上是生活随笔为你收集整理的工作中如何使用线程池的?自己如何定义一个线程池?的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: 生产上如何设置线程池参数?拒绝策略怎么配
- 下一篇: 线程池配置合理线程数?