久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

java開啟新線程并傳參的兩種方法

 印度阿三17 2020-03-01

一,、繼承Thread類

步驟:

1):定義一個(gè)類A繼承于Java.lang.Thread類.

2):在A類中覆蓋Thread類中的run方法.

3):我們在run方法中編寫需要執(zhí)行的操作:run方法里的代碼,線程執(zhí)行體.

4):在main方法(線程)中,創(chuàng)建線程對象,并啟動(dòng)線程:

? ? ? ? ? ? ? (1)創(chuàng)建線程類對象: ???????????????A類 ??a ?= ?new ??A類();

? ? ? ? ? ? ? (2)調(diào)用線程對象的start方法: ???a.start();//啟動(dòng)一個(gè)線程

注意:千萬不要調(diào)用run方法,如果調(diào)用run方法好比是對象調(diào)用方法,依然還是只有一個(gè)線程,并沒有開啟新的線程.

線程只能啟動(dòng)一次!

創(chuàng)建啟動(dòng)線程實(shí)例:

//1):定義一個(gè)類A繼承于java.lang.Thread類.  
class MusicThread extends Thread{
    private String idNum;
    public MusicThread(String idNum) {
        this.idNum= idNum;
    }
    //2):在A類中覆蓋Thread類中的run方法.  
    public void run() {  
        //3):在run方法中編寫需要執(zhí)行的操作
        System.out.println(idNum); 
    }  
}  
  
public class ExtendsThreadDemo {
    public static void main(String[] args) {
         //4):在main方法(線程)中,創(chuàng)建線程對象,并啟動(dòng)線程.  
         MusicThread music = new MusicThread("123456"); 
         music.start(); 
    }  
}  

二,、實(shí)現(xiàn)Runnable接口

步驟:

1):定義一個(gè)類A實(shí)現(xiàn)于java.lang.Runnable接口,注意A類不是線程類.

2):在A類中覆蓋Runnable接口中的run方法.

3):我們在run方法中編寫需要執(zhí)行的操作:run方法里的,線程執(zhí)行體.

4):在main方法(線程)中,創(chuàng)建線程對象,并啟動(dòng)線程:

?????(1)創(chuàng)建線程類對象:? ? ? ? Thread ?t = new Thread(new ?A()); ???

?????(2)調(diào)用線程對象的start方法:? ? ?t.start();

創(chuàng)建啟動(dòng)線程實(shí)例:

//1):定義一個(gè)類A實(shí)現(xiàn)于java.lang.Runnable接口,注意A類不是線程類.  
class MusicImplements implements Runnable{
    private String idNum;
    public void setId(String idNum){
        this.idNum = idNum;
    }
    //2):在A類中覆蓋Runnable接口中的run方法.  
    public void run() {  
        //3):在run方法中編寫需要執(zhí)行的操作
        System.out.println(idNum);
    }  
}  
  
public class ImplementsRunnableDemo {  
    public static void main(String[] args) {
        //4):在main方法(線程)中,創(chuàng)建線程對象,并啟動(dòng)線程
        MusicImplements mi = new MusicImplements();
        mi.setId("123456");
        Thread t = new Thread(mi); 
        t.start();
    }  
}  

繼承方式和實(shí)現(xiàn)方式的區(qū)別:

繼承方式:
? ? ? ? ? ? ? ? 1):從設(shè)計(jì)上分析,,Java中類是單繼承的,如果繼承了Thread了,該類就不能再有其他的直接父類了.
? ? ? ? ? ? ? ? 2):從操作上分析,繼承方式更簡單,獲取線程名字也簡單.(操作上,更簡單)

? ? ? ? ? ? ? ? ? ? ? ? ??String name = Thread.currentThread().getName();
? ? ? ? ? ? ? ? 3):從多線程共享同一個(gè)資源上分析,繼承方式不能做到.
實(shí)現(xiàn)方式:
? ? ? ? ? ? ? ? 1):從設(shè)計(jì)上分析,Java中類可以多實(shí)現(xiàn)接口,此時(shí)該類還可以繼承其他類,并且還可以實(shí)現(xiàn)其他接口,,設(shè)計(jì)更為合理.
? ? ? ? ? ? ? ? 2):從操作上分析,實(shí)現(xiàn)方式稍微復(fù)雜點(diǎn),獲取線程名字也比較復(fù)雜,得使用Thread.currentThread()來獲取當(dāng)前線程的引用.

?? ? ? ? ? ? ? 3):從多線程共享同一個(gè)資源上分析,實(shí)現(xiàn)方式可以做到(是否共享同一個(gè)資源).

來源:https://www./content-1-645651.html

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多