Java线程池及Thread相关问题

本文详细介绍了Java线程池的核心参数,包括corePoolSize、allowCoreThreadTimeOut、maximumPoolSize、keepAliveTime及其作用。探讨了线程池的拒绝策略,如AbortPolicy、DiscardPolicy等,并解析了线程池的执行流程。此外,还讨论了如何设置线程池的核心线程数,以及ThreadLocal的实现与内存泄漏问题。最后,对比了sleep()和wait()的区别,并分析了Java线程池中submit()和execute()方法的不同。
摘要由CSDN通过智能技术生成

一、Java线程池有哪些核心参数,分别有什么的作用?

构造方法最多的是7个参数;

ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( 8, 16, 60, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(1024), Executors.defaultThreadFactory(), new ThreadPoolExecutor.CallerRunsPolicy() );
    public static void main(String[] args) {
   
        //基于Executor框架实现线程池
        ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(
                8,
                16,
                60,
                TimeUnit.SECONDS,
                new ArrayBlockingQueue<Runnable>(1024),
                Executors.defaultThreadFactory(),
                //new MyThreadFactory("my-thread-pool-"),
                new ThreadPoolExecutor.AbortPolicy()
        );

        //创建线程池后,初始化一个核心线程
        //threadPoolExecutor.prestartCoreThread();

        //创建线程池后,初始化所有的核心线程
        //threadPoolExecutor.prestartAllCoreThreads();

        //设置核心线程在空闲超时后是否允许销毁,true表示允许销毁
        threadPoolExecutor.allowCoreThreadTimeOut(true);

        threadPoolExecutor.execute(() -> {
   
            System.out.println("任务执行......" + Thread.currentThread().getName());
        });

        threadPoolExecutor.shutdown();
    }

	static class MyThreadFactory implements ThreadFactory {
   

        private final AtomicInteger threadNumber = new AtomicInteger(1); //线程编号
        private final String namePrefix; //线程名称的前缀

        public MyThreadFactory(String namePrefix) {
   
            this.namePrefix = namePrefix;
        }

        @Override
        public Thread newThread(Runnable r) {
   
            Thread t = new Thread(r, namePrefix + threadNumber.getAndIncrement());
            if (t.isDaemon())
                t.setDaemon(false);
            if (t.getPriority() != Thread.NORM_PRIORITY)
                t.setPriority(Thread.NORM_PRIORITY);
            return t;
        }
    }
  1. int corePoolSize

线程池中的核心线程数量
allowCoreThreadTimeOut;允许核心线程超时销毁;
boolean prestartCoreThread(),初始化一个核心线程;
int prestartAllCoreThreads(),初始化所有核心线程;

  1. int maximumPoolS
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值