溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

多線程在java中的使用

發(fā)布時(shí)間:2020-06-23 09:56:47 來(lái)源:億速云 閱讀:150 作者:Leah 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)多線程在java中的使用,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

第一種方式,定義Thread類的子類:

//第一種方法
public class MyThread extends Thread {
    @Override
    public void run() {
        String name = getName(); // 獲取線程名稱
        System.out.println(name); // 輸出 Thread-0
    }
}
//第二種方法
public class MyThread extends Thread {
    @Override
    public void run() {
        Thread t = Thread.currentThread(); // 獲取當(dāng)前線程
        System.out.println(t); 	// 下面調(diào)用后輸出 Thread[Thread-0,5,main]
        System.out.println(t.getName());// 輸出 Thread-0
    }
}

開啟多線程:

public class demo1Test {
    public static void main(String[] args) {
        MyThread mt = new MyThread();
        mt.start();// 會(huì)運(yùn)行MyThread的run()方法
   }
}

第二種方式,實(shí)現(xiàn)Runnable接口:

實(shí)現(xiàn)步驟:

1.創(chuàng)建一個(gè)Runnable 接口的實(shí)現(xiàn)類

2.在實(shí)現(xiàn)類中重寫Runnable接口的run方法,設(shè)置線程任務(wù)

3.創(chuàng)建一個(gè)Runnable接口的實(shí)現(xiàn)類對(duì)象

4.創(chuàng)建Thread類對(duì)象,構(gòu)造方法中傳遞Runnable接口的實(shí)現(xiàn)類對(duì)象

5.調(diào)用Thread類中的start方法,開啟新的線程執(zhí)行run方法

public class Runnableimpl implements Runnable {//1.創(chuàng)建一個(gè)Runnable 接口的實(shí)現(xiàn)類
    @Override
    public void run() {
        for (int i = 1; i <= 20; i++) {// 2.在實(shí)現(xiàn)類中重寫Runnable接口的run方法,設(shè)置線程任務(wù)
            System.out.println(Thread.currentThread().getName() + i);
        }
    }
}
public class demo2Test {
    public static void main(String[] args) {
        Runnable run = new Runnableimpl();//3.創(chuàng)建一個(gè)Runnable接口的實(shí)現(xiàn)類對(duì)象
        Thread t = new Thread(run); //4.創(chuàng)建Thread類對(duì)象,構(gòu)造方法中傳遞Runnable接口的實(shí)現(xiàn)類對(duì)象
        t.start();//5.調(diào)用Thread類中的start方法,開啟新的線程執(zhí)行run方法
        for (int i = 1; i <= 20; i++) {
            System.out.println(Thread.currentThread().getName() + i);
        }	// Thread-0和main開始多線程搶奪cpu
    }
}

實(shí)現(xiàn)Runnable接口創(chuàng)建多線程的好處:

1.避免了單繼承的局限性:

一個(gè)類只能繼承一個(gè)類,類繼承了Thread后就不能繼承其他的類

實(shí)現(xiàn)了Runnable接口,還可以繼承其他的類,實(shí)現(xiàn)其他接口。

2.增強(qiáng)了程序的擴(kuò)展性,降低了程序的耦合性

實(shí)現(xiàn)Runnable接口的方式,把設(shè)置線程任務(wù)和開啟線程任務(wù)進(jìn)行分離

實(shí)現(xiàn)類中,重寫run()方法,用來(lái)設(shè)置線程任務(wù)。

創(chuàng)建Thread類對(duì)象,調(diào)用start()方法,用來(lái)開啟新線程

sleep( )方法,使方法睡眠

public class sleepTest {
    public static void main(String[] args) {
        for (int i = 0; i < 20; i++) {
        //使用Thread類的sleep方法,讓方法睡眠1秒鐘
            try {
                Thread.sleep(1000);//傳入的是毫秒值
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println(i);
        }
    }
}

關(guān)于多線程在java中的使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI