溫馨提示×

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

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

python中實(shí)現(xiàn)多線程的案例

發(fā)布時(shí)間:2020-11-09 11:27:17 來(lái)源:億速云 閱讀:166 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹python中實(shí)現(xiàn)多線程的案例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

1. 用函數(shù)創(chuàng)建多線程

Python3中,Python提供了一個(gè)內(nèi)置模塊 threading.Thread,可以很方便地讓我們創(chuàng)建多線程。

舉個(gè)例子

import time
from threading import Thread
 
# 自定義線程函數(shù)。
def target(name="Python"):
    for i in range(2):
        print("hello", name)
        time.sleep(1)
 
# 創(chuàng)建線程01,不指定參數(shù)
thread_01 = Thread(target=target)
# 啟動(dòng)線程01
thread_01.start()
 
 
# 創(chuàng)建線程02,指定參數(shù),注意逗號(hào)
thread_02 = Thread(target=target, args=("MING",))
# 啟動(dòng)線程02
thread_02.start()

可以看到輸出

hello Python
hello MING
hello Python
hello MING

2. 用類創(chuàng)建多線程

相比較函數(shù)而言,使用類創(chuàng)建線程,會(huì)比較麻煩一點(diǎn)。

首先,我們要自定義一個(gè)類,對(duì)于這個(gè)類有兩點(diǎn)要求,

必須繼承 threading.Thread 這個(gè)父類;

必須復(fù)寫(xiě) run 方法。

來(lái)看一下例子為了方便對(duì)比,run函數(shù)我復(fù)用上面的main。

import time
from threading import Thread
 
class MyThread(Thread):
    def __init__(self, type="Python"):
        # 注意:super().__init__() 必須寫(xiě)
        # 且最好寫(xiě)在第一行
        super().__init__()
        self.type=type
 
    def run(self):
        for i in range(2):
            print("hello", self.type)
            time.sleep(1)
 
if __name__ == '__main__':
    # 創(chuàng)建線程01,不指定參數(shù)
    thread_01 = MyT
hread()
    # 創(chuàng)建線程02,指定參數(shù)
    thread_02 = MyThread("MING")
 
    thread_01.start()
thread_02.start()

當(dāng)然結(jié)果也是一樣的。

hello Python
hello MING
hello Python
hello MING

3. 線程對(duì)象的方法

上面介紹了當(dāng)前 Python 中創(chuàng)建線程兩種主要方法。

# 如上所述,創(chuàng)建一個(gè)線程
t=Thread(target=func)
 
# 啟動(dòng)子線程
t.start()
 
# 阻塞子線程,待子線程結(jié)束后,再往下執(zhí)行
t.join()
 
# 判斷線程是否在執(zhí)行狀態(tài),在執(zhí)行返回True,否則返回False
t.is_alive()
t.isAlive()
 
# 設(shè)置線程是否隨主線程退出而退出,默認(rèn)為False
t.daemon = True
t.daemon = False
 
# 設(shè)置線程名
t.name = "My-Thread"

以上是python中實(shí)現(xiàn)多線程的案例的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI