亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

青海省| 礼泉县| 阳原县| 鸡东县| 台州市| 杨浦区| 汉源县| 宝丰县| 苗栗县| 阜城县| 高安市| 来凤县| 台前县| 濮阳市| 江门市| 新安县| 湖口县| 上犹县| 宁化县| 明溪县| 霸州市| 同仁县| 洛宁县| 平陆县| 盐源县| 将乐县| 房产| 灌阳县| 横峰县| 苏尼特右旗| 巴里| 尼玛县| 闸北区| 花垣县| 桃园市| 固镇县| 旬阳县| 晋城| 德清县| 巫山县| 伽师县|