Java中使用有返回值的线程
程序员文章站
2023-03-28 11:33:22
在创建多线程程序的时候,我们常实现Runnable接口,Runnable没有返回值,要想获得返回值,Java5提供了一个新的接口Callable,可以获取线程中的返回值,但是获取线程的返回值的时候,需要注意,我们的方法是异步的,获取返回值的时候,线程任务不一定有返回值,所以,需要判断线程是否结束,才 ......
在创建多线程程序的时候,我们常实现Runnable接口,Runnable没有返回值,要想获得返回值,Java5提供了一个新的接口Callable,可以获取线程中的返回值,但是获取线程的返回值的时候,需要注意,我们的方法是异步的,获取返回值的时候,线程任务不一定有返回值,所以,需要判断线程是否结束,才能够去取值。
测试代码
package com.wuwii.test; import java.util.concurrent.*; /** * @author Zhang Kai * @version 1.0 * @since <pre>2017/10/31 11:17</pre> */ public class Test { private static final Integer SLEEP_MILLS = 3000; private static final Integer RUN_SLEEP_MILLS = 1000; private int afterSeconds = SLEEP_MILLS / RUN_SLEEP_MILLS; // 线程池(根据机器的核心数) private final ExecutorService fixedThreadPool = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()); private void testCallable() throws InterruptedException { Future<String> future = null; try { /** * 在创建多线程程序的时候,我们常实现Runnable接口,Runnable没有返回值,要想获得返回值,Java5提供了一个新的接口Callable * * Callable需要实现的是call()方法,而不是run()方法,返回值的类型有Callable的类型参数指定, * Callable只能由ExecutorService.submit() 执行,正常结束后将返回一个future对象。 */ future = fixedThreadPool.submit(() -> { Thread.sleep(SLEEP_MILLS); return "The thread returns value."; }); } catch (Exception e) { e.printStackTrace(); } if (future == null) return; for (;;) { /** * 获得future对象之前可以使用isDone()方法检测future是否完成,完成后可以调用get()方法获得future的值, * 如果直接调用get()方法,get()方法将阻塞到线程结束,很浪费。 */ if (future.isDone()) { try { System.out.println(future.get()); break; } catch (InterruptedException | ExecutionException e) { e.printStackTrace(); } } else { System.out.println("After " + afterSeconds-- + " seconds,get the future returns value."); Thread.sleep(1000); } } } public static void main(String[] args) throws InterruptedException { new Test().testCallable(); } }
运行结果:
After 3 seconds,get the future returns value. After 2 seconds,get the future returns value. After 1 seconds,get the future returns value. The thread returns value.
总结:
- 需要返回值的线程使用Callable 接口,实现call 方法;
- 获得future对象之前可以使用isDone()方法检测future是否完成,完成后可以调用get()方法获得future的值,如果直接调用get()方法,get()方法将阻塞到线程结束。
上一篇: 决定网站排名的4大重要因素
下一篇: 电脑应用程序图标和用户名怎么改?
推荐阅读
-
Java中Collections工具类的使用
-
[JAVA IDEA]在使用maven项目中,无法读取resources文件夹中的配置文件的一种解决方案
-
获取Java线程返回值的几种方式
-
php中,用函数,如果有很多个参数,只使用最后一个参数,有什么优雅的写法?
-
在java中对LIst集合的两种排序方法(即sort的使用方法)
-
Java中sort()方法的使用
-
Java中Random类的基本使用
-
10_Android中通过HttpUrlConnection访问网络,Handler和多线程使用,读取网络html代码并显示在界面上,ScrollView组件的使用_html/css_WEB-ITnose
-
java中Locks的使用
-
java 线程 Lock 锁使用Condition实现线程的等待(await)与通知(signal)