真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了善左免費(fèi)建站歡迎大家使用!

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

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)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


網(wǎng)頁名稱:python下thread模塊創(chuàng)建線程的方法
本文網(wǎng)址:http://weahome.cn/article/jpogdo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部