溫馨提示×

溫馨提示×

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

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

Python中生成線程的方法有哪些

發(fā)布時間:2020-08-10 15:37:36 來源:億速云 閱讀:137 作者:小新 欄目:編程語言

小編給大家分享一下Python中生成線程的方法有哪些,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

Python中有兩個線程模塊,分別是thread和threading,threading是thread的升級版。threading的功能更強大。

創(chuàng)建線程有3種方法:

1、thread模塊的start_new_thread函數(shù)

2、繼承自threading.Thread模塊

3、用theading.Thread直接返回一個thread對象,然后運行它的start方法

方法一、thread模塊的start_new_thread函數(shù)

其函數(shù)原型:

start_new_thread(function,atgs[,kwargs])

其參數(shù)含義如下:

function: 在線程中執(zhí)行的函數(shù)名
args:元組形式的參數(shù)列表。
kwargs: 可選參數(shù),以字典的形式指定參數(shù)(即對一些參數(shù)進行指定初始化)

代碼

import thread
 
def hello(id = 0, interval = 2):
    for i in filter(lambda x: x % interval == 0, range(10)):
        print "Thread id : %d, time is %d\n" % (id, i)
 
if __name__ == "__main__":
 
    #thread.start_new_thread(hello, (1,2))   這種調(diào)用形式也是可用的
    #thread.start_new_thread(hello, (2,4))
     
    thread.start_new_thread(hello, (), {"id": 1})
    thread.start_new_thread(hello, (), {"id": 2})

方法二:繼承自threading.Thread模塊

注意:必須重寫run函數(shù),而且想要運行應該調(diào)用start方法

import threading
 
class MyThread(threading.Thread):
 
    def __init__(self, id, interval):
        threading.Thread.__init__(self)
 
        self.id = id
        self.interval = interval
 
    def run(self):
        for x in filter(lambda x: x % self.interval == 0, range(10)):
            print "Thread id : %d   time is %d \n" % (self.id, x)
 
if __name__ == "__main__":
    t1 = MyThread(1, 2)
    t2 = MyThread(2, 4)
 
    t1.start()
    t2.start()
 
    t1.join()
    t2.join()

方法三:用theading.Thread直接返回一個thread對象,然后運行它的start方法

import threading
 
def hello(id, times):
    for i in range(times):
        print "hello %s time is %d\n" % (id , i)
 
if __name__ == "__main__":
    t = threading.Thread(target=hello, args=("hawk", 5))
    t.start()

看完了這篇文章,相信你對Python中生成線程的方法有哪些有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

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

AI