您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)怎么在Java中創(chuàng)建一個(gè)線程,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
Java中線程的創(chuàng)建有兩種方式:
1. 通過繼承Thread類,重寫Thread的run()方法,將線程運(yùn)行的邏輯放在其中
2. 通過實(shí)現(xiàn)Runnable接口,實(shí)例化Thread類
在實(shí)際應(yīng)用中,我們經(jīng)常用到多線程,如車站的售票系統(tǒng),車站的各個(gè)售票口相當(dāng)于各個(gè)線程。當(dāng)我們做這個(gè)系統(tǒng)的時(shí)候可能會(huì)想到兩種方式來實(shí)現(xiàn),繼承Thread類或?qū)崿F(xiàn)Runnable接口,現(xiàn)在看一下這兩種方式實(shí)現(xiàn)的兩種結(jié)果。
package com.threadtest; class MyThread extends Thread{ private int ticket = 10; private String name; public MyThread(String name){ this.name =name; } public void run(){ for(int i =0;i<500;i++){ if(this.ticket>0){ System.out.println(this.name+"賣票---->"+(this.ticket--)); } } } } public class ThreadDemo { public static void main(String[] args) { MyThread mt1= new MyThread("一號窗口"); MyThread mt2= new MyThread("二號窗口"); MyThread mt3= new MyThread("三號窗口"); mt1.start(); mt2.start(); mt3.start(); } }
運(yùn)行結(jié)果如下:
一號窗口賣票---->10 一號窗口賣票---->9 二號窗口賣票---->10 一號窗口賣票---->8 一號窗口賣票---->7 一號窗口賣票---->6 三號窗口賣票---->10 一號窗口賣票---->5 一號窗口賣票---->4 一號窗口賣票---->3 一號窗口賣票---->2 一號窗口賣票---->1 二號窗口賣票---->9 二號窗口賣票---->8 三號窗口賣票---->9 三號窗口賣票---->8 三號窗口賣票---->7 三號窗口賣票---->6 三號窗口賣票---->5 三號窗口賣票---->4 三號窗口賣票---->3 三號窗口賣票---->2 三號窗口賣票---->1 二號窗口賣票---->7 二號窗口賣票---->6 二號窗口賣票---->5 二號窗口賣票---->4 二號窗口賣票---->3 二號窗口賣票---->2 二號窗口賣票---->1
通過實(shí)現(xiàn)Runnable接口的代碼如下:
package com.threadtest; class MyThread1 implements Runnable{ private int ticket =10; private String name; public void run(){ for(int i =0;i<500;i++){ if(this.ticket>0){ System.out.println(Thread.currentThread().getName()+"賣票---->"+(this.ticket--)); } } } } public class RunnableDemo { public static void main(String[] args) { // TODO Auto-generated method stub //設(shè)計(jì)三個(gè)線程 MyThread1 mt = new MyThread1(); Thread t1 = new Thread(mt,"一號窗口"); Thread t2 = new Thread(mt,"二號窗口"); Thread t3 = new Thread(mt,"三號窗口"); // MyThread1 mt2 = new MyThread1(); // MyThread1 mt3 = new MyThread1(); t1.start(); t2.start(); t3.start(); } }
運(yùn)行結(jié)果如下:
一號窗口賣票---->10 三號窗口賣票---->9 三號窗口賣票---->7 三號窗口賣票---->5 三號窗口賣票---->4 三號窗口賣票---->3 三號窗口賣票---->2 三號窗口賣票---->1 一號窗口賣票---->8 二號窗口賣票---->6
為什么會(huì)出現(xiàn)這種結(jié)果吶。我們不妨做個(gè)比喻,其實(shí)剛的程序,
繼承Thread類的,我們相當(dāng)于拿出三件事即三個(gè)賣票10張的任務(wù)分別分給三個(gè)窗口,他們各做各的事各賣各的票各完成各的任務(wù),因?yàn)镸yThread繼承Thread類,所以在new MyThread的時(shí)候在創(chuàng)建三個(gè)對象的同時(shí)創(chuàng)建了三個(gè)線程;
實(shí)現(xiàn)Runnable的, 相當(dāng)于是拿出一個(gè)賣票10張得任務(wù)給三個(gè)人去共同完成,new MyThread相當(dāng)于創(chuàng)建一個(gè)任務(wù),然后實(shí)例化三個(gè)Thread,創(chuàng)建三個(gè)線程即安排三個(gè)窗口去執(zhí)行。
用圖表示如下:
在我們剛接觸的時(shí)候可能會(huì)迷糊繼承Thread類和實(shí)現(xiàn)Runnable接口實(shí)現(xiàn)多線程,其實(shí)在接觸后我們會(huì)發(fā)現(xiàn)這完全是兩個(gè)不同的實(shí)現(xiàn)多線程,一個(gè)是多個(gè)線程分別完成自己的任務(wù),一個(gè)是多個(gè)線程共同完成一個(gè)任務(wù)。
其實(shí)在實(shí)現(xiàn)一個(gè)任務(wù)用多個(gè)線程來做也可以用繼承Thread類來實(shí)現(xiàn)只是比較麻煩,一般我們用實(shí)現(xiàn)Runnable接口來實(shí)現(xiàn),簡潔明了。
大多數(shù)情況下,如果只想重寫 run() 方法,而不重寫其他 Thread 方法,那么應(yīng)使用 Runnable 接口。這很重要,因?yàn)槌浅绦騿T打算修改或增強(qiáng)類的基本行為,否則不應(yīng)為該類(Thread)創(chuàng)建子類。
看完上述內(nèi)容,你們對怎么在Java中創(chuàng)建一個(gè)線程有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。