JAVA CONCURRENCY EXECUTORS 介绍Java并发处理线程池

本文深入探讨了Java并发编程的核心概念,介绍了ExecutorService接口及其实现类ThreadPoolExecutor的功能与使用方法,并对比了Callable与Runnable的不同之处。此外,还详细解析了如何通过submit方法提交任务并获取结果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

I would make a fool out of myself if I tell you that util.concurrent APIs kicks cheetah's ass when the classes are available since 2004. However, there are some cool features which I would like to revisit. Concurrency experts, now is the time for you to close this window. All others, stay tight for the fun ride.

Thou shall not forget your roots

 

Executor is the root interface with a single execute method. Anything that implements a Runnable interface can passed as a parameter. Silly Executor, however, has no support for Callable though.

Good news : ExecutorService interface, which extends Executor, adds support for Callable. Its implementation class is ThreadPoolExecutor.

I am going to pretend that the ScheduledExecutorService interface and its implementation class ScheduledThreadPoolExecutor does not exist as they just add scheduling capabilities on top of the ExecutorService and ThreadPoolExecutor. But remember this class when the powerful but boring java.util.Timer is not enough and a full blown external scheduler is just too much.

If you are new to concurrency or forgot the difference between Callable and Runnable, you might want to read up a little before reading further. A dummy guide is here

The ExecutorService.submit Facts :

The three submit variants : 

Future submit(Callable task) <br>  
Future submit(Runnable task) <br>  
Future submit(Runnable task, T result)  
  1. The submit method of the ExecutorService is overloaded and accepts either a Callable or Runnable.

  2. Since the run method of the Runnable returns void, it is no surprise that Future.get always returns a null when the task is complete.

Future<?>     submit(Runnable task)  
  1. The other overloaded submit method that accepts a Runnable and a generic returns whatever you passed in as the second parameter as the result.
<T> Future<T>    submit(Runnable task, T result)  

In fact, opening up the code (FutureTask), you'll notice that the RunnableAdapter top level nested class of Executors simply holds the result and returns the same result after the run method is complete.

###为何用ThreadPoolExecutor 的submit(runnable,T result)却是可以返回结果的呢??

static final class RunnableAdapter<T> implements Callable<T> {

        final Runnable task;
        final T result;

        RunnableAdapter(Runnable task, T result) {
            this.task = task;
            this.result = result;
        }

        public T  [More ...] call() {
           task.run();
           return result;
        }

}

RunnableAdapter source

In both the cases, if you would like to (you should !) terminate the program instead of your executor thread blocking the program and entering a busy loop, you should call the shutdown method as in

    executorService.shutdown()

shutDown facts

You could imagine shutdown as a half-closed door of a mall. No new customers will be let in but the existing customers can leave the mall once they are done.

To reiterate,

  1. shutdown is a polite method. It does not actually shut down the tasks in the pool immediately. It just says that no new tasks will be accepted.

  2. Unless you are executing your tasks using invokeAll, you would need to wait for all tasks in progress to complete. This is achieved by calling the awaitTermination method. 
    (invokeAll and submit examples at the bottom of the post)

  3. Once all the current tasks are done, the executor service shuts down.

If you are in need of an impolite, intruding method which doesn't care whether the current threads are done with their tasks, then shutdownNow is your guy. However, there's no guarantee that the method will shutdown the service on the dot but it is the closest you have to immediate shutdown.

转载于:https://my.oschina.net/u/2308739/blog/678459

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值