Java并发编程 - Runnbale、Future、Callable 你不知道的那点事(一)大致说明了一下 Runnable、Future、Callable 接口之间的关系,也说明了一些内部常用的方法的含义,那具体内部怎么实现的呢?JDK内部底层源码怎么解读?我就带领大家一一探个究竟。

一、ExecutorService 中常用的 submit() 底层源码详解

(1)ExecutorService 中常用的 submit() 方法展示:

<T> Future<T> submit(Callable<T> task);
Future<?> submit(Runnable task);

   暂时只需要知道线程池中的线程是依赖于 ExecutorService 接口进行调用的,实现类是 ThreadPoolExecutor,重写了 Executor 接口的 execute() 方法,然后进行调用;

  后面我会专门讲解一下 Executor、ExecutorService、AbstractExecutorService、ThreadPoolExecutor、Executors 之间的关系,让你详细了解线程池的原理和概念。

(2)ExecutorService 中的 submit(Runnable task) 方法详解

  首先通过 Executors 工具类方法创建线程池(单线程线程池、固定数量线程池、缓存线程池),然后调用 submit() 方法,传入的参数切记是 Runnable 接口的实现类,肯定是重写了 run() 方法;

  明白上面这句话的原理,看一下 AbstractExecutorService 抽象类中的 submit(Runnable task) 方法详解:一步一步调用

public Future<?> submit(Runnable task) {
if (task == null) throw new NullPointerException();
RunnableFuture<Void> ftask = newTaskFor(task, null);
execute(ftask);
return ftask;
}

  FutureTask 构造方法,设置参数 callable,state 参数:

public FutureTask(Runnable runnable, V result) {
this.callable = Executors.callable(runnable, result);    // 调用线程工具类 Executors 中的 callable() 方法
this.state = NEW;
}

  Executors 工具类中的 callable() 方法

public static <T> Callable<T> callable(Runnable task, T result) {
if (task == null)
throw new NullPointerException();
return new RunnableAdapter<T>(task, 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 call() {
task.run();
return result;
}
}

  1)先判断 task 不能为空,然后调用 newTaskFor(task, null) 方法,然后一个 RunabbleFuture 接口的实现类实例对象: FuntureTask 实例对象【切记:这个类肯定重写了 run() 方法】;

  2)注意:创建 FutureTask 对象实例时,调用工具类 Executors 创建一个 RunnableAdapter 对象(可以理解为:Runnable 和Callable 之间的适配器),RunnableAdapter 内部类继承了 Callable 接口,重写了 call() 方法,在 call() 方法中调用真正任务要执行的 run() 方法逻辑;

    3)然后调用 execute(ftask) 方法,这个方法是线程池实现顶层接口 Executor,重写了 execute() 方法,去执行任务逻辑方法;

  ExecutorPoolThread 类中的 execute() 方法:

public void execute(Runnable command) {
if (command == null)
throw new NullPointerException();
int c = ctl.get();
if (workerCountOf(c) < corePoolSize) {
if (addWorker(command, true))
return;
c = ctl.get();
}
if (isRunning(c) && workQueue.offer(command)) {
int recheck = ctl.get();
if (! isRunning(recheck) && remove(command))
reject(command);
else if (workerCountOf(recheck) == 0)
addWorker(null, false); // 添加到工作线程中
}
else if (!addWorker(command, false))
reject(command);
}

  线程池 ExecutorService 直接调用 execute() 方法执行线程任务,则会创建新的 Worker 对象(Worker 类中有一个 Thread 成员变量),Worker 对象可以理解为一个工作线程,是用HashSet() 集合存储,之后该线程调用 start() 方法线程开始执行任务;

  注意:创建 FutureTask 对象实例时,调用工具类 Executors 创建一个 RunnableAdapter 对象(可以理解为:Runnable 和Callable 之间的适配器),RunnableAdapter 内部类继承了 Callable 接口,重写了 call() 方法,在 call() 方法中调用真正任务要执行的 run() 方法逻辑;

  本质:调用FutureTask类的run( )方法,在其run( )方法中调用了RunnableAdapter类的call( )方法,在call( )方法中调用了Runnable实现类的run( ) 方法!

(3)ExecutorService 中的 submit(Callable task) 方法详解

  实现 Callable 接口的任务,在线程池底层原理调用上是比较简单的,没有 submit(Runnable task) 这么复杂;

  AbstractExecutorService 抽象类中的 submit(Callable task) 方法详解:

public <T> Future<T> submit(Callable<T> task) {
if (task == null) throw new NullPointerException();
RunnableFuture<T> ftask = newTaskFor(task);
execute(ftask);
return ftask;
}

  FutureTask 类中设置 callable、state 参数

protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
return new FutureTask<T>(callable);
} public FutureTask(Callable<V> callable) {
if (callable == null)
throw new NullPointerException();
this.callable = callable;
this.state = NEW; // ensure visibility of callable
}

  线程池 ExecutorService 直接调用 execute() 方法执行线程任务,则会创建新的 Worker 对象(Worker 类中有一个 Thread 成员变量),Worker 对象可以理解为一个工作线程,是用HashSet() 集合存储,之后该线程调用 start() 方法线程开始执行任务;

  本质:在调用 ExecutorPoolThread 中的 run() 方法执行任务时,在里面是调用了真正创建的 FutureTask 实例的 run() 方法,在这里面才真正调用了实现 Callable 接口的 call() 方法,call() 方法中的代码就是真正要执行任务的逻辑代码;

二、实践

  讲了这么多原理实在是太枯燥乏味,一时半会也理解不了,咱就结合实践再加深一下印象!

   1)使用 Callable + Future + ExecutorPoolThread 获取执行结果


public class Test1 {
public static void main(String[] args) {
ExecutorService executor = Executors.newCachedThreadPool();
Task task = new Task();
Future<Integer> result = executor.submit(task);
executor.shutdown();

try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
e1.printStackTrace();
}

System.out.println("主线程执行......");
try {
System.out.println("task运行结果" + result.get());
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("执行完毕");
}
}

class Task implements Callable<Integer> {
@Override
public Integer call() throws Exception {
System.out.println("子线程执行......");
Thread.sleep(3000);
int sum = 0;
for (int i = 0; i < 100; i++)
sum += i;
return sum;
}
}
 

  结果:

子线程执行......
主线程执行......
task运行结果4950
执行完毕

  2)Runnable + ExecutorPoolThread 获取不到结果

public class Test2 {
public static void main(String[] args) {
ExecutorService executor = Executors.newCachedThreadPool();
Task2 task = new Task2();
Future result = executor.submit(task);
executor.shutdown(); try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
e1.printStackTrace();
} System.out.println("主线程执行......");
try {
System.out.println("task运行结果" + result.get());
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("执行完毕");
}
} class Task2 implements Runnable {
@Override
public void run() {
try {
System.out.println("子线程执行......");
Thread.sleep(3000);
Integer sum = 0;
for (int i = 0; i < 100; i++) {
sum += i;
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}

  结果:

子线程执行......
主线程执行......
task运行结果null
执行完毕

  task运行结果是 null,由于不是 Callable 接口的实现类,没有通用性,就使用了 RunnableAdapter 适配器来保证通用性,所以在 RunnableAdapter 实现了 Callable 接口中重写了 call() 方法,由于传入的 result 是 null,所以返回的 result 也就是 null 了。

三、总结

  说了这么多Runnable、Future、Callable 底层调用的实现原理,本质都会创建一个 FutureTask 对象,然后调用 run() 方法,最后再调用 call() 方法实现任务逻辑【若是 Runnable 接口的实例对象,会使用 RunnableAdapter 适配器来转接调用一下,然后在调用 call() 方法,在此 call() 方法里面在调用 run() 方法执行;若是 Callable 接口的实例,直接调用 call() 方法执行】

  菜鸟的简单整理,大家仔细阅读,有问题请留言一起讨论讨论!

Java并发编程 - Runnbale、Future、Callable 你不知道的那点事(二)的更多相关文章

  1. Java并发编程 - Runnbale、Future、Callable 你不知道的那点事(一)

    从事Java开发已经快两年了,都说Java并发编程比较难,比较重要,关键面试必问,但是在我的日常开发过程中,还真的没有过多的用到过并发编程:这不疫情嘛,周末不能瞎逛,就看看师傅们常说的 Runnabl ...

  2. Java并发编程:ThreadPoolExecutor + Callable + Future(FutureTask) 探知线程的执行状况

    如题 (总结要点) 使用ThreadPoolExecutor来创建线程,使用Callable + Future 来执行并探知线程执行情况: V get (long timeout, TimeUnit ...

  3. Java 并发编程:volatile的使用及其原理(二)

    一.volatile的作用 在<Java并发编程:核心理论>一文中,我们已经提到过可见性.有序性及原子性问题,通常情况下我们可以通过Synchronized关键字来解决这些个问题,不过如果 ...

  4. java并发编程-Executor框架 + Callable + Future

    from: https://www.cnblogs.com/shipengzhi/articles/2067154.html import java.util.concurrent.*; public ...

  5. Java并发编程:Callable、Future和FutureTask

    作者:海子 出处:http://www.cnblogs.com/dolphin0520/ 本博客中未标明转载的文章归作者海子和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置 ...

  6. java并发编程--Runnable Callable及Future

    1.Runnable Runnable是个接口,使用很简单: 1. 实现该接口并重写run方法 2. 利用该类的对象创建线程 3. 线程启动时就会自动调用该对象的run方法 通常在开发中结合Execu ...

  7. (转)Java并发编程:Callable、Future和FutureTask

    Java并发编程:Callable.Future和FutureTask 在前面的文章中我们讲述了创建线程的2种方式,一种是直接继承Thread,另外一种就是实现Runnable接口. 这2种方式都有一 ...

  8. Java 并发编程:Callable和Future

    项目中经常有些任务需要异步(提交到线程池中)去执行,而主线程往往需要知道异步执行产生的结果,这时我们要怎么做呢?用runnable是无法实现的,我们需要用callable实现. import java ...

  9. Java并发编程:Callable、Future和FutureTask(转)

    Java并发编程:Callable.Future和FutureTask 在前面的文章中我们讲述了创建线程的2种方式,一种是直接继承Thread,另外一种就是实现Runnable接口. 这2种方式都有一 ...

随机推荐

  1. beego增删改查

    package main import ( "fmt" "github.com/astaxie/beego/orm" _ "github.com/go ...

  2. nginx优化:worker_processes/worker_connections/worker_rlimit_nofile

    一,优化nginx的worker进程数 1,worker_processes应设置为多少? worker_processes 4; 如何设置这个值: worker_processes默认值是1,一般要 ...

  3. Mac安装stf

    1.brew install rethinkdb graphicsmagick zeromq protobuf yasm pkg-config 2.node版本8.x我的是8.15.0 3.npm i ...

  4. Vue企业级优雅实战05-框架开发01-登录界面

    预览本文的实现效果: # gitee git clone git@gitee.com:cloudyly/dscloudy-admin-single.git # github git clone git ...

  5. 没事学学KVM(二)创建一台虚拟机

    首先通过VMware创建一台虚机,建议内存大于1G,并开启CPU 的inter vt-x功能,安装好对应的软件后,yum install -y qemu-kvm* virt-* libvirt* 准备 ...

  6. json expected name at 1 1

    问题1:导入新的java项目,报expected name at 1:1错误. 解决方法:勾选Derived复选框.

  7. 第1天|12天搞定Python网络爬虫,吃里爬外?

    人力资源部漂亮的小MM,跑来问我:老陈,数据分析和爬虫究竟是关系呀?说实在的,我真不想理她,因为我一直认为这个跟她的工作关系不大,可一想到她负责我负责部门的招聘工作,我只好勉为其难地跟她说:数据分析, ...

  8. pyside2安装避坑

    cmd 输入 pip install PySide2 官方下载太慢 清华源: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pysid ...

  9. drf 认证校验及源码分析

    认证校验 认证校验是十分重要的,如用户如果不登陆就不能访问某些接口. 再比如用户不登陆就不能够对一个接口做哪些操作. drf中认证的写法流程如下: 1.写一个类,继承BaseAuthenticatio ...

  10. vue-main.js中new vue()的解析

    在main.js中,代码如下 import Vue from 'vue' import App from './App.vue' new Vue({ router, render: h => h ...