您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“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的線程”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。