中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java怎么使用Thread和Runnable的線程

發布時間:2021-09-28 14:33:38 來源:億速云 閱讀:119 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“Java怎么使用Thread和Runnable的線程”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Java怎么使用Thread和Runnable的線程”這篇文章吧。

具體如下:

一 使用Thread實現多線程模擬鐵路售票系統

1 代碼

public class ThreadDemo{  public static void main( String[] args )  {    TestThread newTh = new TestThread( );    // 一個線程對象只能啟動一次    newTh.start( );    newTh.start( );    newTh.start( );    newTh.start( );  }}class TestThread extends Thread{  private int tickets = 5;  public void run( )  {    while( tickets > 0 )    {      System.out.println( Thread.currentThread().getName( ) + " 出售票 " + tickets );      tickets -= 1;    }  }}

2 運行

Thread-0 出售票 5Thread-0 出售票 4Thread-0 出售票 3Thread-0 出售票 2Thread-0 出售票 1Exception in thread "main" java.lang.IllegalThreadStateException at java.lang.Thread.start(Thread.java:708) at ThreadDemo.main(ThreadDemo.java:16)

3 說明

一個線程只能啟動一次

二 main方法中產生4個線程

1 代碼

public class ThreadDemo{  public static void main(String[]args)  {    // 啟動了四個線程,分別執行各自的操作    new TestThread( ).start( );    new TestThread( ).start( );    new TestThread( ).start( );    new TestThread( ).start( );  }}class TestThread extends Thread{  private int tickets = 5;  public void run( )  {    while (tickets > 0)    {      System.out.println(Thread.currentThread().getName() + " 出售票 " + tickets);      tickets -= 1;    }  }}

2 運行

Thread-0 出售票 5Thread-0 出售票 4Thread-0 出售票 3Thread-0 出售票 2Thread-0 出售票 1Thread-1 出售票 5Thread-1 出售票 4Thread-1 出售票 3Thread-1 出售票 2Thread-1 出售票 1Thread-2 出售票 5Thread-2 出售票 4Thread-2 出售票 3Thread-2 出售票 2Thread-2 出售票 1Thread-3 出售票 5Thread-3 出售票 4Thread-3 出售票 3Thread-3 出售票 2Thread-3 出售票 1

三 使用Runnable接口實現多線程,并實現資源共享

1 代碼

public class RunnableDemo{  public static void main( String[] args )  {    TestThread newTh = new TestThread( );    // 啟動了四個線程,并實現了資源共享的目的    new Thread( newTh ).start( );    new Thread( newTh ).start( );    new Thread( newTh ).start( );    new Thread( newTh ).start( );  }}class TestThread implements Runnable{  private int tickets = 5;  public void run( )  {    while( tickets > 0 )    {      System.out.println( Thread.currentThread().getName() + " 出售票 " + tickets );      tickets -= 1;    }  }}

2 運行

Thread-0 出售票 5Thread-0 出售票 4Thread-0 出售票 3Thread-0 出售票 2Thread-0 出售票 1

以上是“Java怎么使用Thread和Runnable的線程”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

辉县市| 阜南县| 高碑店市| 惠水县| 冕宁县| 宜春市| 汤阴县| 乌拉特前旗| 正镶白旗| 深泽县| 江西省| 城市| 兴山县| 南靖县| 武宣县| 津南区| 平阳县| 谷城县| 安多县| 达尔| 玛曲县| 赣州市| 万年县| 封丘县| 昌吉市| 昌宁县| 吉木萨尔县| 新巴尔虎右旗| 独山县| 姚安县| 威海市| 巴彦县| 鹤壁市| 天津市| 惠东县| 万年县| 五家渠市| 浦北县| 繁昌县| 武功县| 汉源县|