溫馨提示×

溫馨提示×

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

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

python下thread模塊創(chuàng)建線程的方法

發(fā)布時間:2021-07-29 13:36:26 來源:億速云 閱讀:125 作者:chen 欄目:編程語言

本篇內(nèi)容介紹了“python下thread模塊創(chuàng)建線程的方法”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

thread方法對創(chuàng)建線程有效且直接。您可以在Linux和Windows中運行程序。

1、thread方法啟動了新的線程,并返回了它的識別符。該系統(tǒng)將使用傳輸?shù)膮?shù)列表調(diào)用指定為函數(shù)參數(shù)的函數(shù)。 function 返回時線程會靜默退出。

2、Args是參數(shù)元組,使用空元組調(diào)用 function不帶參數(shù)。可選參數(shù)指定關(guān)鍵詞參數(shù)的字典。

#語法
thread.start_new_thread ( function, args[, kwargs] )

實例

#Python 多線程示例。
#1. 使用遞歸計算階乘。
#2. 使用線程調(diào)用階乘函數(shù)。
 
from _thread import start_new_thread
from time import sleep
 
threadId = 1 #線程計數(shù)器
waiting = 2 #2秒等待的時間
 
def factorial(n):
    global threadId
    rc = 0
    
    if n < 1:   # base case
        print("{}: {}".format('\nThread', threadId ))
        threadId += 1
        rc = 1
    else:
        returnNumber = n * factorial( n - 1 )  # recursive call
        print("{} != {}".format(str(n), str(returnNumber)))
        rc = returnNumber
    
    return rc
 
start_new_thread(factorial, (5, ))
start_new_thread(factorial, (4, ))
 
print("Waiting for threads to return...")
sleep(waiting)

“python下thread模塊創(chuàng)建線程的方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

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

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

AI