python threading模組

來源:互聯網
上載者:User

標籤:

#coding=utf-8import threadingfrom time import ctime,sleepdef music(func):    for i in range(2):        print "I was listening to %s. %s" %(func,ctime())        sleep(1)def move(func):    for i in range(2):        print "I was at the %s! %s" %(func,ctime())        sleep(5)threads = []t1 = threading.Thread(target=music,args=(u‘愛情買賣‘,))threads.append(t1)t2 = threading.Thread(target=move,args=(u‘阿凡達‘,))threads.append(t2)if __name__ == ‘__main__‘:    for t in threads:        t.setDaemon(True)        t.start()  
   for t in threads:
     t.join()
print "all over %s" %ctime()

threads = []

t1 = threading.Thread(target=music,args=(u‘愛情買賣‘,))

threads.append(t1)

  建立了threads數組,建立線程t1,使用threading.Thread()方法,在這個方法中調用music方法target=music,args方法對music進行傳參。 把建立好的線程t1裝到threads數組中。

  接著以同樣的方式建立線程t2,並把t2也裝到threads數組。

 

for t in threads:

  t.setDaemon(True)

  t.start()

最後通過for迴圈遍曆數組。(數組被裝載了t1和t2兩個線程)

 

setDaemon()

  setDaemon(True)將線程聲明為守護線程,必須在start() 方法調用之前設定,如果不設定為守護線程程式會被無限掛起。子線程啟動後,父線程也繼續執行下去,當父線程執行完最後一條語句print "all over %s" %ctime()後,沒有等待子線程,直接就退出了,同時子線程也一同結束。

註:但是如果我們在互動模式運行該程式(比如說用IDLE直接運行),主線程只有在python退出時終止,因此t1,t2還會繼續列印,如果直接運行.py檔案,則不會有這個問題.

 

start()

開始線程活動.

 

join()

此處join的原理就是依次檢驗線程池中的線程是否結束,沒有結束就阻塞直到線程結束,如果結束則跳轉執行下一個線程的join函數.

python threading模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.