Python線程中對join方法的運用的教程

來源:互聯網
上載者:User
join 方法:阻塞線程 , 直到該線程執行完畢

因此 ,可以對join加一個逾時操作 , join([timeout]),超過設定時間,就不再阻塞線程

jion加上還有一個後果就是, 子線程和主線程綁定在一起 , 直到子線程運行完畢,才開始執行子線程。


代碼 有join:

在CODE上查看代碼片派生到My Code片

  #-*- coding: UTF-8 -*-          import threading   from time import sleep      def fun(): 

在CODE上查看代碼片派生到My Code片

    i= 5     while i > 0:       print(111111)       sleep(10) 

在CODE上查看代碼片派生到My Code片

      i--      if __name__ == '__main__':           a = threading.Thread(target = fun)     a.start()     a.join()     while True:       print('aaaaaaa')       sleep(1) 

在CODE上查看代碼片派生到My Code片

輸出:

111111 輸完之後, 才輸出 aaaaaaa  

在CODE上查看代碼片派生到My Code片

代碼: 無join

在CODE上查看代碼片派生到My Code片

  #-*- coding: UTF-8 -*-          import threading   from time import sleep      def fun():     while True:       print(111111)       sleep(10)      if __name__ == '__main__':           a = threading.Thread(target = fun)     a.start()     while True:       print('aaaaaaa')       sleep(1) 

在CODE上查看代碼片派生到My Code片

111111 和 aaaaaaa  間隔輸出
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.