91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

鹤山市| 蒙自县| 仪陇县| 磐石市| 内乡县| 毕节市| 洛南县| 平舆县| 崇明县| 即墨市| 阆中市| 高台县| 张家界市| 庆城县| 赤峰市| 建阳市| 彭泽县| 安化县| 靖边县| 镇原县| 泽库县| 贞丰县| 新化县| 饶河县| 土默特左旗| 衢州市| 廊坊市| 万州区| 闽侯县| 航空| 荣昌县| 灵璧县| 六盘水市| 临泉县| 桃园市| 桓台县| 杂多县| 东乌珠穆沁旗| 商水县| 平果县| 思南县|