Java多線程三種主要實(shí)現(xiàn)方式解析
多線程三種主要實(shí)現(xiàn)方式:繼承Thread類,實(shí)現(xiàn)Runnable接口、Callable和Futrue。
一、簡(jiǎn)單實(shí)現(xiàn)
import java.util.concurrent.Callable;import java.util.concurrent.ExecutionException;import java.util.concurrent.FutureTask;import java.util.concurrent.TimeUnit;public class T02_HowToCreateThread { //1.繼承Thread類 static class MyThread extends Thread{ @Override public void run() { System.out.println('MyThread-->'); } } //3.實(shí)現(xiàn)Runnable接口 static class MyRun implements Runnable{ @Override public void run() { System.out.println('MyRunable-->'); } } //4.實(shí)現(xiàn)Callable接口 static class MyCall implements Callable{ @Override public Object call() throws Exception { System.out.println('myCallable-->'); return 1; } } public static void main(String[] args) throws ExecutionException, InterruptedException { //1.繼承Thread類 new MyThread().start(); //2.lambda與繼承Thread類類//1.繼承Thread類似,最簡(jiǎn)單 new Thread(()->{ System.out.println('lambda-->'); }).start(); //3.實(shí)現(xiàn)Runnable接口 new Thread(new MyRun()).start(); new Thread(new Runnable() { @Override public void run() {System.out.println('simple->Runnable'); } }).start(); //4.實(shí)現(xiàn)Callable接口,并用包裝器FutureTask來同時(shí)實(shí)現(xiàn)Runable、Callable兩個(gè)接口,可帶返回結(jié)果 MyCall mycall = new MyCall(); FutureTask futureTask = new FutureTask(mycall); new Thread(futureTask).start(); System.out.println(futureTask.get()); }}
二、使用ExecutorService、Callable和Future一起實(shí)現(xiàn)帶返回值
import java.util.ArrayList;import java.util.List;import java.util.concurrent.*;/** * 使用ExecutorsService、Callable、Future來實(shí)現(xiàn)多個(gè)帶返回值的線程 */public class T02_HowToCreateThread02 { static class MyCallable implements Callable{ private int taskNum; public MyCallable(int taskNum){ this.taskNum = taskNum; } @Override public Object call() throws Exception { System.out.println('任務(wù)'+taskNum); return 'MyCallable.call()-->task'+taskNum; } } public static void main(String[] args) throws ExecutionException, InterruptedException { int num = 5; //創(chuàng)建一個(gè)線程池 ExecutorService pool = Executors.newFixedThreadPool(num); List<Future> futureList = new ArrayList<Future>(); for (int i = 0; i < num; i++){ MyCallable mc = new MyCallable(i); //執(zhí)行任務(wù),并返回值 Future future = pool.submit(mc); futureList.add(future); } pool.shutdown(); for (Future f: futureList){ System.out.println(f.get()); } }}
結(jié)果:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. PHP循環(huán)與分支知識(shí)點(diǎn)梳理2. ASP基礎(chǔ)入門第三篇(ASP腳本基礎(chǔ))3. 解析原生JS getComputedStyle4. ASP實(shí)現(xiàn)加法驗(yàn)證碼5. 無線標(biāo)記語言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁6. ASP刪除img標(biāo)簽的style屬性只保留src的正則函數(shù)7. 讀大數(shù)據(jù)量的XML文件的讀取問題8. css代碼優(yōu)化的12個(gè)技巧9. 利用CSS3新特性創(chuàng)建透明邊框三角10. 前端從瀏覽器的渲染到性能優(yōu)化
