join的作用是眾所周知的,阻塞進(jìn)程直到線程執(zhí)行完畢。通用的做法是我們啟動(dòng)一批線程,最后join這些線程結(jié)束,例如:
for i in range(10): t = ThreadTest(i) thread_arr.append(t) for i in range(10): thread_arr[i].start() for i in range(10): thread_arr[i].join()
此處join的原理就是依次檢驗(yàn)線程池中的線程是否結(jié)束,沒有結(jié)束就阻塞直到線程結(jié)束,如果結(jié)束則跳轉(zhuǎn)執(zhí)行下一個(gè)線程的join函數(shù)。
而py的join函數(shù)還有一個(gè)特殊的功能就是可以設(shè)置超時(shí),如下:
Thread.join([timeout])
Wait until the thread terminates. This blocks the calling thread until the thread whose join() method is called terminates – either normally or through an unhandled exception – or until the optional timeout occurs.
也就是通過傳給join一個(gè)參數(shù)來設(shè)置超時(shí),也就是超過指定時(shí)間join就不在阻塞進(jìn)程。而在實(shí)際應(yīng)用測(cè)試的時(shí)候發(fā)現(xiàn)并不是所有的線程在超時(shí)時(shí)間內(nèi)都結(jié)束的,而是順序執(zhí)行檢驗(yàn)是否在time_out時(shí)間內(nèi)超時(shí),例如,超時(shí)時(shí)間設(shè)置成2s,前面一個(gè)線程在沒有完成的情況下,后面線程執(zhí)行join會(huì)從上一個(gè)線程結(jié)束時(shí)間起再設(shè)置2s的超時(shí)。
希望本文所述對(duì)大家的Python程序設(shè)計(jì)有所幫助。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com