您好,登錄后才能下訂單哦!
本篇內容介紹了“python下thread模塊創建線程的方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
thread方法對創建線程有效且直接。您可以在Linux和Windows中運行程序。
1、thread方法啟動了新的線程,并返回了它的識別符。該系統將使用傳輸的參數列表調用指定為函數參數的函數。 function 返回時線程會靜默退出。
2、Args是參數元組,使用空元組調用 function不帶參數。可選參數指定關鍵詞參數的字典。
#語法 thread.start_new_thread ( function, args[, kwargs] )
實例
#Python 多線程示例。 #1. 使用遞歸計算階乘。 #2. 使用線程調用階乘函數。 from _thread import start_new_thread from time import sleep threadId = 1 #線程計數器 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模塊創建線程的方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。