溫馨提示×

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

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

怎么在java項(xiàng)目中實(shí)現(xiàn)一個(gè)Runnable接口

發(fā)布時(shí)間:2021-03-09 16:15:42 來源:億速云 閱讀:153 作者:Leah 欄目:編程語言

這篇文章給大家介紹怎么在java項(xiàng)目中實(shí)現(xiàn)一個(gè)Runnable接口,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

具體內(nèi)容如下

Java當(dāng)中,創(chuàng)建線程通常用兩種方式:

1、繼承Thread類

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

但是在通常的開發(fā)當(dāng)中,一般會(huì)選擇實(shí)現(xiàn)Runnable接口,原因有二:
1.避免單繼承的局限,在Java當(dāng)中一個(gè)類可以實(shí)現(xiàn)多個(gè)接口,但只能繼承一個(gè)類
2.適合資源的共享
原因1我們經(jīng)常聽到,但是2是什么呢?下面用一個(gè)例子來解釋:
有5張票,分兩個(gè)窗口賣:

繼承Thread類:

public class ThreadDemo {
  public static void main(String[] args) {
    HelloThread t1 = new HelloThread();
    t1.setName("一號(hào)窗口");
    t1.start();
    HelloThread t2 = new HelloThread();
    t2.setName("二號(hào)窗口");
    t2.start();
  }

}
class HelloThread extends Thread{

   private int ticket = 5;
  public void run() {
    while(true){
      System.out.println(this.getName()+(ticket--));
      if (ticket<1) {
        break;  
      }
    }
  }

}

運(yùn)行結(jié)果:

怎么在java項(xiàng)目中實(shí)現(xiàn)一個(gè)Runnable接口

很明顯,這樣達(dá)不到我們想要的結(jié)果,這樣兩個(gè)窗口在同時(shí)賣票,互不干涉。

實(shí)現(xiàn)Thread類:

public class ThreadDemo {
  public static void main(String[] args) {
    HelloThread t = new HelloThread();
    Thread thread1 = new Thread(t, "1號(hào)窗口");
    thread1.start();
    Thread thread2 = new Thread(t, "2號(hào)窗口");
    thread2.start();
  }

}
class HelloThread implements Runnable{

  private int ticket = 5;
  public void run() {
    while(true){
      System.out.println(Thread.currentThread().getName()+(ticket--));
      if (ticket<1) {
        break;  
      }
    }
  }

}

運(yùn)行結(jié)果:

怎么在java項(xiàng)目中實(shí)現(xiàn)一個(gè)Runnable接口

這樣兩個(gè)窗口就共享了5張票,因?yàn)橹划a(chǎn)生了一個(gè)HelloThread對(duì)象,一個(gè)對(duì)象里邊有一個(gè)屬性,這樣兩個(gè)線程同時(shí)在操作一個(gè)屬性,運(yùn)行同一個(gè)run方法。

關(guān)于怎么在java項(xiàng)目中實(shí)現(xiàn)一個(gè)Runnable接口就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

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

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

AI