国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

基于Java Callable接口實現線程代碼實例

瀏覽:2日期:2022-08-26 15:39:04

實現Callable接口(jdk8新特性)

可以獲得線程的返回值

*前兩種方式沒有返回值,因為run方法返回void

創建一個未來任務類對象 Futrue task = new Future(Callable<>);重寫call()方法 可以使用匿名內部類方式

task.get()方法獲取線程返回結果

get方法執行會導致當前方法阻塞 效率較低

代碼如下

import java.util.concurrent.Callable;import java.util.concurrent.ExecutionException;import java.util.concurrent.FutureTask;public class Test_13 { public static void main(String[] args) { System.out.println(Thread.currentThread().getName() + 'begin'); FutureTask task = new FutureTask(new Callable() { @Override public Object call() throws Exception {System.out.println(Thread.currentThread().getName() + 'start');Thread.sleep(1000 * 5);int a = 100;int b = 200;System.out.println(Thread.currentThread().getName() + 'over');return a + b; } }); Thread thread = new Thread(task); thread.start(); try { System.out.println(task.get()); } catch (InterruptedException e) { e.printStackTrace(); } catch (ExecutionException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + 'end'); }}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
主站蜘蛛池模板: 庐江县| 青田县| 含山县| 永平县| 吴桥县| 汉沽区| 枞阳县| 墨江| 剑阁县| 阿克苏市| 廉江市| 四川省| 石家庄市| 铅山县| 长宁区| 鸡泽县| 永嘉县| 闵行区| 吉木萨尔县| 元氏县| 武乡县| 台中县| 来宾市| 兴化市| 佛学| 迁安市| 拜泉县| 云霄县| 工布江达县| 锦屏县| 敖汉旗| 辽阳市| 克山县| 汾西县| 贞丰县| 芜湖市| 磴口县| 乐东| 含山县| 阿坝县| 丰城市|