java中yield(),sleep()以及wait()的區(qū)別_第1頁
java中yield(),sleep()以及wait()的區(qū)別_第2頁
java中yield(),sleep()以及wait()的區(qū)別_第3頁
java中yield(),sleep()以及wait()的區(qū)別_第4頁
java中yield(),sleep()以及wait()的區(qū)別_第5頁
已閱讀5頁,還剩6頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1、【精品文檔】如有侵權,請聯(lián)系網(wǎng)站刪除,僅供學習與交流java中yield(),sleep()以及wait()的區(qū)別.精品文檔.往往混淆了這三個函數(shù)的使用。 從操作系統(tǒng)的角度講,os會維護一個ready queue(就緒的線程隊列)。并且在某一時刻cpu只為ready queue中位于隊列頭部的線程服務。 但是當前正在被服務的線程可能覺得cpu的服務質(zhì)量不夠好,于是提前退出,這就是yield。 或者當前正在被服務的線程需要睡一會,醒來后繼續(xù)被服務,這就是sleep。  sleep方法不推薦使用,可用wait。 線程退出最好自己實現(xiàn),在運行狀態(tài)中一直檢驗一個狀態(tài),如果這個狀態(tài)為

2、真,就一直運行,如果外界更改了這個狀態(tài)變量,那么線程就停止運行。 sleep()使當前線程進入停滯狀態(tài),所以執(zhí)行sleep()的線程在指定的時間內(nèi)肯定不會執(zhí)行;yield()只是使當前線程重新回到可執(zhí)行狀態(tài),所以執(zhí)行yield()的線程有可能在進入到可執(zhí)行狀態(tài)后馬上又被執(zhí)行。 sleep()可使優(yōu)先級低的線程得到執(zhí)行的機會,當然也可以讓同優(yōu)先級和高優(yōu)先級的線程有執(zhí)行的機會;yield()只能使同優(yōu)先級的線程有執(zhí)行的機會。 當調(diào)用wait()后,線程會釋放掉它所占有的“鎖標志”,從而使線程所在對象中的其它synchronized數(shù)據(jù)可被別的線程使用。 waite()和notify()因為會對對象

3、的“鎖標志”進行操作,所以它們必須在synchronized函數(shù)或synchronizedblock中進行調(diào)用。如果在non-synchronized函數(shù)或non-synchronizedblock中進行調(diào)用,雖然能編譯通過,但在運行時會發(fā)生IllegalMonitorStateException的異常。 徹底明白多線程通信機制:   線程間的通信 1.    線程的幾種狀態(tài) 線程有四種狀態(tài),任何一個線程肯定處于這四種狀態(tài)中的一種: 1)    產(chǎn)生(New):線程對象已經(jīng)產(chǎn)生,但尚未被啟動,所以無法執(zhí)行。如通過new產(chǎn)生了一個線程對

4、象后沒對它調(diào)用start()函數(shù)之前。 2)    可執(zhí)行(Runnable):每個支持多線程的系統(tǒng)都有一個排程器,排程器會從線程池中選擇一個線程并啟動它。當一個線程處于可執(zhí)行狀態(tài)時,表示它可能正處于線程池中等待排排程器啟動它;也可能它已正在執(zhí)行。如執(zhí)行了一個線程對象的start()方法后,線程就處于可執(zhí)行狀態(tài),但顯而易見的是此時線程不一定正在執(zhí)行中。 3)    死亡(Dead):當一個線程正常結(jié)束,它便處于死亡狀態(tài)。如一個線程的run()函數(shù)執(zhí)行完畢后線程就進入死亡狀態(tài)。 4)    停滯(Blocked):當一個線程處于停滯狀態(tài)

5、時,系統(tǒng)排程器就會忽略它,不對它進行排程。當處于停滯狀態(tài)的線程重新回到可執(zhí)行狀態(tài)時,它有可能重新執(zhí)行。如通過對一個線程調(diào)用wait()函數(shù)后,線程就進入停滯狀態(tài),只有當兩次對該線程調(diào)用notify或notifyAll后它才能兩次回到可執(zhí)行狀態(tài)。 2.    classThread下的常用函數(shù)函數(shù) 2.1    suspend()、resume() 1)    通過suspend()函數(shù),可使線程進入停滯狀態(tài)。通過suspend()使線程進入停滯狀態(tài)后,除非收到resume()消息,否則該線程不會變回可執(zhí)行狀態(tài)。 2)  &#

6、160; 當調(diào)用suspend()函數(shù)后,線程不會釋放它的“鎖標志”。 例11:     class TestThreadMethod extends Thread         public static int shareVar = 0;         public TestThreadMethod(String name)             super(name

7、);                  public synchronized void run()             if(shareVar=0)                 for(int i=0; i<5; i+)        

8、;             shareVar+;                     if(shareVar=5)                         this.suspend();/(1) &

9、#160;                                                             else         &

10、#160;       System.out.print(Thread.currentThread().getName();                 System.out.println(" shareVar = " + shareVar);                 this.resume();/(2)   &#

11、160;                           public class TestThread         public static void main(String args)             TestThreadMethod t1 = new TestThreadMe

12、thod("t1"); TestThreadMethod t2 = new TestThreadMethod("t2"); t1.start();/(5)             /t1.start();/(3)             t2.start();/(4)          運行結(jié)果為: t2 shareVar = 5 i.&

13、#160;   當代碼(5)的t1所產(chǎn)生的線程運行到代碼(1)處時,該線程進入停滯狀態(tài)。然后排程器從線程池中喚起代碼(4)的t2所產(chǎn)生的線程,此時shareVar值不為0,所以執(zhí)行else中的語句。 ii.    也許你會問,那執(zhí)行代碼(2)后為什么不會使t1進入可執(zhí)行狀態(tài)呢?正如前面所說,t1和t2是兩個不同對象的線程,而代碼(1)和(2)都只對當前對象進行操作,所以t1所產(chǎn)生的線程執(zhí)行代碼(1)的結(jié)果是對象t1的當前線程進入停滯狀態(tài);而t2所產(chǎn)生的線程執(zhí)行代碼(2)的結(jié)果是把對象t2中的所有處于停滯狀態(tài)的線程調(diào)回到可執(zhí)行狀態(tài)。 iii.   

14、; 那現(xiàn)在把代碼(4)注釋掉,并去掉代碼(3)的注釋,是不是就能使t1重新回到可執(zhí)行狀態(tài)呢?運行結(jié)果是什么也不輸出。為什么會這樣呢?也許你會認為,當代碼(5)所產(chǎn)生的線程執(zhí)行到代碼(1)時,它進入停滯狀態(tài);而代碼(3)所產(chǎn)生的線程和代碼(5)所產(chǎn)生的線程是屬于同一個對象的,那么就當代碼(3)所產(chǎn)生的線程執(zhí)行到代碼(2)時,就可使代碼(5)所產(chǎn)生的線程執(zhí)行回到可執(zhí)行狀態(tài)。但是要清楚,suspend()函數(shù)只是讓當前線程進入停滯狀態(tài),但并不釋放當前線程所獲得的“鎖標志”。所以當代碼(5)所產(chǎn)生的線程進入停滯狀態(tài)時,代碼(3)所產(chǎn)生的線程仍不能啟動,因為當前對象的“鎖標志”仍被代碼(5)所產(chǎn)生的線程

15、占有。 2.2     sleep() 1)    sleep ()函數(shù)有一個參數(shù),通過參數(shù)可使線程在指定的時間內(nèi)進入停滯狀態(tài),當指定的時間過后,線程則自動進入可執(zhí)行狀態(tài)。 2)    當調(diào)用sleep ()函數(shù)后,線程不會釋放它的“鎖標志”。 例12:     class TestThreadMethod extends Thread         class TestThreadMethod extends Thread 

16、0;       public static int shareVar = 0;         public TestThreadMethod(String name)             super(name);                  public synchroniz

17、ed void run()             for(int i=0; i<3; i+)                 System.out.print(Thread.currentThread().getName();                 System.out.println("

18、: " + i);                 try                     Thread.sleep(100);/(4)                         

19、60;       catch(InterruptedException e)                     System.out.println("Interrupted");                          

20、                     public class TestThread         public static void main(String args)             TestThreadMethod t1 = new TestThreadMethod("t1");   &

21、#160;         TestThreadMethod t2 = new TestThreadMethod("t2");             t1.start();(1)             t1.start();(2)             /t2.start(

22、);(3)          運行結(jié)果為: t1 : 0 t1 : 1 t1 : 2 t1 : 0 t1 : 1由結(jié)果可證明,雖然在run()中執(zhí)行了sleep(),但是它不會釋放對象的“鎖標志”,所以除非代碼(1)的線程執(zhí)行完run()函數(shù)并釋放對象的“鎖標志”,否則代碼(2)的線程永遠不會執(zhí)行。                 如果把代碼(2)注釋掉,并去掉代碼(3)的注釋,結(jié)果將變?yōu)椋?t1 : 0 t2 : 0 t1 : 1 t

23、2 : 1 t1 : 2 t2 : 2 由于t1和t2是兩個對象的線程,所以當線程t1通過sleep()進入停滯時,排程器會從線程池中調(diào)用其它的可執(zhí)行線程,從而t2線程被啟動。                 例13:     class TestThreadMethod extends Thread         public static int shareVar = 0;     

24、;    public TestThreadMethod(String name)             super(name);                  public synchronized void run()             for(int i=0; i<

25、5; i+)                 System.out.print(Thread.currentThread().getName();                 System.out.println(" : " + i);                 try

26、                     if(Thread.currentThread().getName().equals("t1")                         Thread.sleep(200);       &

27、#160;             else                         Thread.sleep(100);                          

28、0;      catch(InterruptedException e)                     System.out.println("Interrupted");                           

29、                   public class TestThread         public static void main(String args)             TestThreadMethod t1 = new TestThreadMethod("t1");    &#

30、160;        TestThreadMethod t2 = new TestThreadMethod("t2");             t1.start();             /t1.start();             t2.start();   

31、60;          運行結(jié)果為: t1 : 0 t2 : 0 t2 : 1 t1 : 1 t2 : 2 t2 : 3 t1 : 2 t2 : 4 t1 : 3 t1 : 4 由于線程t1調(diào)用了sleep(200),而線程t2調(diào)用了sleep(100),所以線程t2處于停滯狀態(tài)的時間是線程t1的一半,從從結(jié)果反映出來的就是線程t2打印兩倍次線程t1才打印一次。2.3    yield() 1)    通過yield ()函數(shù),可使線程進入可執(zhí)行狀態(tài),排程器從可執(zhí)行狀態(tài)的線程中重新進行排程。所

32、以調(diào)用了yield()的函數(shù)也有可能馬上被執(zhí)行。 2)    當調(diào)用yield ()函數(shù)后,線程不會釋放它的“鎖標志”。 例14:     class TestThreadMethod extends Thread         public static int shareVar = 0;         public TestThreadMethod(String name)       &

33、#160;     super(name);                  public synchronized void run()             for(int i=0; i<4; i+)                 System.out.

34、print(Thread.currentThread().getName();                 System.out.println(" : " + i);                 Thread.yield();                  

35、;             public class TestThread         public static void main(String args)             TestThreadMethod t1 = new TestThreadMethod("t1");          &

36、#160;  TestThreadMethod t2 = new TestThreadMethod("t2");             t1.start();             t1.start();/(1)             /t2.start();(2)       &#

37、160;  運行結(jié)果為: t1 : 0 t1 : 1 t1 : 2 t1 : 3 t1 : 0 t1 : 1 t1 : 2 t1 : 3 從結(jié)果可知調(diào)用yield()時并不會釋放對象的“鎖標志”。                 如果把代碼(1)注釋掉,并去掉代碼(2)的注釋,結(jié)果為: t1 : 0 t1 : 1 t2 : 0 t1 : 2 t2 : 1 t1 : 3 t2 : 2 t2 : 3 從結(jié)果可知,雖然t1線程調(diào)用了yield(),但它馬上又被執(zhí)行了。2.4  &#

38、160; sleep()和yield()的區(qū)別 1)    sleep()使當前線程進入停滯狀態(tài),所以執(zhí)行sleep()的線程在指定的時間內(nèi)肯定不會執(zhí)行;yield()只是使當前線程重新回到可執(zhí)行狀態(tài),所以執(zhí)行yield()的線程有可能在進入到可執(zhí)行狀態(tài)后馬上又被執(zhí)行。 2)    sleep()可使優(yōu)先級低的線程得到執(zhí)行的機會,當然也可以讓同優(yōu)先級和高優(yōu)先級的線程有執(zhí)行的機會;yield()只能使同優(yōu)先級的線程有執(zhí)行的機會。 例15:     class TestThreadMethod extends Thread  

39、      public static int shareVar = 0;         public TestThreadMethod(String name)             super(name);                  public void run() &#

40、160;           for(int i=0; i<4; i+)                 System.out.print(Thread.currentThread().getName();                 System.out.println(" : " + i); &

41、#160;               /Thread.yield();(1)                 /* (2) */                 try                

42、0;    Thread.sleep(3000);                                 catch(InterruptedException e)                     System.

43、out.println("Interrupted");                                               public class TestThread         public static

44、void main(String args)             TestThreadMethod t1 = new TestThreadMethod("t1");             TestThreadMethod t2 = new TestThreadMethod("t2");             t

45、1.setPriority(Thread.MAX_PRIORITY);             t2.setPriority(Thread.MIN_PRIORITY);             t1.start();             t2.start();          運行結(jié)果為: t

46、1 : 0 t1 : 1 t2 : 0 t1 : 2 t2 : 1 t1 : 3 t2 : 2 t2 : 3 由結(jié)果可見,通過sleep()可使優(yōu)先級較低的線程有執(zhí)行的機會。注釋掉代碼(2),并去掉代碼(1)的注釋,結(jié)果為: t1 : 0 t1 : 1 t1 : 2 t1 : 3 t2 : 0 t2 : 1 t2 : 2 t2 : 3 可見,調(diào)用yield(),不同優(yōu)先級的線程永遠不會得到執(zhí)行機會。2.5    join() 使調(diào)用join()的線程執(zhí)行完畢后才能執(zhí)行其它線程,在一定意義上,它可以實現(xiàn)同步的功能。 例16:     class TestT

47、hreadMethod extends Thread         public static int shareVar = 0;         public TestThreadMethod(String name)             super(name);               

48、0;  public void run()             for(int i=0; i<4; i+)                 System.out.println(" " + i);                 try    

49、60;                Thread.sleep(3000);                                 catch(InterruptedException e)           

50、;          System.out.println("Interrupted");                                               public class TestThread

51、         public static void main(String args)             TestThreadMethod t1 = new TestThreadMethod("t1");             t1.start();            &#

52、160;try                 t1.join();                          catch(InterruptedException e)             t1.start();    

53、60;     運行結(jié)果為: 0 1 2 3 0 1 2 33. classObject下常用的線程函數(shù) wait()、notify()和notifyAll()這三個函數(shù)由java.lang.Object類提供,用于協(xié)調(diào)多個線程對共享數(shù)據(jù)的存取。 3.1 wait()、notify()和notifyAll() 1) wait()函數(shù)有兩種形式:第一種形式接受一個毫秒值,用于在指定時間長度內(nèi)暫停線程,使線程進入停滯狀態(tài)。第二種形式為不帶參數(shù),代表waite()在notify()或notifyAll()之前會持續(xù)停滯。 2) 當對一個對象執(zhí)行notify()時,會從線

54、程等待池中移走該任意一個線程,并把它放到鎖標志等待池中;當對一個對象執(zhí)行notifyAll()時,會從線程等待池中移走所有該對象的所有線程,并把它們放到鎖標志等待池中。 3) 當調(diào)用wait()后,線程會釋放掉它所占有的“鎖標志”,從而使線程所在對象中的其它synchronized數(shù)據(jù)可被別的線程使用。 例17: 下面,我們將對例11中的例子進行修改 class TestThreadMethod extends Thread public static int shareVar = 0; public TestThreadMethod(String name) super(name); pub

55、lic synchronized void run() if(shareVar=0) for(int i=0; i<10; i+) shareVar+; if(shareVar=5) try this.wait();/(4) catch(InterruptedException e) if(shareVar!=0) System.out.print(Thread.currentThread().getName(); System.out.println(" shareVar = " + shareVar); this.notify();/(5) public class TestThread public static void main(String args) TestThreadMethod t1 = new TestThreadMethod("t1"); TestThreadMethod t2 =

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論