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來(lái)同時(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來(lái)實(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í)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
如何解決redis的NOAUTH Authentication required異常
這篇文章主要介紹了Jedis異常解決:NOAUTH Authentication required,,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值2019-07-07
Mybatis choose when用法實(shí)例代碼
本文通過(guò)實(shí)例代碼給大家介紹了Mybatis choose when用法,需要的的朋友參考下吧2017-06-06
Java實(shí)現(xiàn)動(dòng)態(tài)驗(yàn)證碼生成
這篇文章主要為大家詳細(xì)介紹了Java實(shí)現(xiàn)動(dòng)態(tài)驗(yàn)證碼生成,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-04-04
Java過(guò)濾器doFilter里chain.doFilter()函數(shù)的理解
這篇文章主要介紹了Java過(guò)濾器doFilter里chain.doFilter()函數(shù)的理解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-11-11

