您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)java線程的創(chuàng)建方式,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、繼承Thread類實(shí)現(xiàn)多線程
2、覆寫Runnable()接口實(shí)現(xiàn)多線程,而后同樣覆寫run()。推薦此方式
3、使用Callable和Future創(chuàng)建線程
實(shí)例如下:
1、繼承Thread類實(shí)現(xiàn)多線程
/* * 繼承Thread類創(chuàng)建線程 * 1、重寫run方法 * 2、創(chuàng)建thread類的實(shí)例,即創(chuàng)建線程對象 * 3、調(diào)用線程對象的start()來啟動該線程 * 注意:Thread類的每個進(jìn)程之間不能共享該實(shí)例變量;具有單繼承局限 * */ public class StartThread extends Thread{ private int i; @Override //重寫run方法 public void run() { // TODO Auto-generated method stub for(i=0;i<10;i++) { System.out.println(getName()+" "+i); } } public static void main(String[] args) { for(int i=0;i<10;i++) { System.out.println(Thread.currentThread().getName()+ " ,"+i); //創(chuàng)建thread類的實(shí)例 StartThread h2=new StartThread(); StartThread h3=new StartThread(); if(i==2) { //啟動第一個進(jìn)程 h2.start(); //啟動第二個進(jìn)程 h3.start(); } } } }
2、覆寫Runnable()接口實(shí)現(xiàn)多線程,而后同樣覆寫run()
定義Runnable()接口的實(shí)現(xiàn)類,重寫Run()方法。
創(chuàng)建Runnable實(shí)現(xiàn)類的實(shí)例,并以此實(shí)例作為Thread的target來創(chuàng)建Thread對象。這個Thread對象才是真正的線程對象
通過調(diào)用線程對象的start()方法來啟動線程
/*創(chuàng)建線程方式二 * 1、創(chuàng)建:實(shí)現(xiàn)Runnable+重寫run * 2、啟動:創(chuàng)建實(shí)現(xiàn)類對象+Thread對象+start * * 注意:推薦使用,避免單繼承的局限性,優(yōu)先使用接口 * 方便共享資源 * */ public class MyThread2 implements Runnable {//實(shí)現(xiàn)Runnable接口 public void run(){ //重寫run方法 // TODO Auto-generated method stub //當(dāng)線程類實(shí)現(xiàn)Runnable接口時 //如果想要獲取當(dāng)前線程,只能使用Thread.currentThread方法 for(;i<100;i++) { System.out.println(Thread.currentThread().getName()+" "+i); } } public class Main { public static void main(String[] args){ //啟動線程1 //不像繼承Thread類一樣,直接可以實(shí)例化對象即可,Runnable接口必須要 //先創(chuàng)建實(shí)例,再將此實(shí)例作為Thread的target來創(chuàng)建Thread對象 //創(chuàng)建并啟動線程 MyThread2 myThread=new MyThread2(); Thread thread=new Thread(myThread); thread().start(); //或者 new Thread(new MyThread2()).start(); } }
3、使用Callable和Future創(chuàng)建線程
和Runnable接口不一樣,Callable接口提供了一個call()方法作為線程執(zhí)行體,call()方法比run()方法功能要強(qiáng)大。
call()方法可以有返回值
call()方法可以聲明拋出異常
public class Main { public static void main(String[] args){ MyThread3 th=new MyThread3(); //使用Lambda表達(dá)式創(chuàng)建Callable對象 //使用FutureTask類來包裝Callable對象 FutureTask<Integer> future=new FutureTask<Integer>( (Callable<Integer>)()->{ return 5; } ); //實(shí)質(zhì)上還是以Callable對象來創(chuàng)建并啟動線程 new Thread(task,"有返回值的線程").start(); try{ //get()方法會阻塞,直到子線程執(zhí)行結(jié)束才返回 System.out.println("子線程的返回值:"+future.get()); }catch(Exception e){ ex.printStackTrace(); } } }
關(guān)于java線程的創(chuàng)建方式就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。