溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python多線程中主線程等待所有子線程結(jié)束的方法

發(fā)布時(shí)間:2020-07-30 14:39:04 來源:億速云 閱讀:958 作者:小豬 欄目:開發(fā)技術(shù)

這篇文章主要講解了Python多線程中主線程等待所有子線程結(jié)束的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

我就廢話不多說了,還是直接看代碼吧!

from time import ctime
import threading
import time

def a():
    #for i in range(5):
        print('Program a is running... at ', ctime(),u'.線程名為:',threading.current_thread().name )
        time.sleep(0.2)
        
def b(x):
    #for i in range(5):
        print('Program b('+x+') is running... at ', ctime(),u'.線程名為:',threading.current_thread().name )
        time.sleep(0.1)
        

if __name__ == '__main__':
    print('Mainthread %s is running...' % threading.current_thread().name)
    thread_list = []
    for i in range(400):#同時(shí)運(yùn)行多個(gè)
       t1= threading.Thread(target=a)
       thread_list.append(t1)
       
    t2 = threading.Thread(target=b, args=('Python',))
    thread_list.append(t2)
    t3 = threading.Thread(target=b, args=('Java',))
    thread_list.append(t3)
    

    for t in thread_list:
        t.setDaemon(True)  # 設(shè)置為守護(hù)線程,不會(huì)因主線程結(jié)束而中斷
        t.start()
    for t in thread_list:
        t.join()  # 子線程全部加入,主線程等所有子線程運(yùn)行完畢

    print('Mainthread %s ended.' % threading.current_thread().name)

補(bǔ)充知識(shí):Python主線程結(jié)束為什么守護(hù)線程還在運(yùn)行?

在實(shí)際的交互模式中,主線程只有在Python退出時(shí)才終止,所以action函數(shù)輸出結(jié)果還是被打印出來了?!?/p>

按照我的理解應(yīng)該是說,在shell里主線程在輸出結(jié)果之后并沒有真的結(jié)束,所以action還會(huì)打印結(jié)果。

建議把程序編譯出來,放到另外的環(huán)境中測(cè)試,估計(jì)就會(huì)是你要的結(jié)果了。

看完上述內(nèi)容,是不是對(duì)Python多線程中主線程等待所有子線程結(jié)束的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI