溫馨提示×

溫馨提示×

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

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

怎么在python中使用threading創(chuàng)建線程

發(fā)布時間:2021-04-25 17:19:47 來源:億速云 閱讀:120 作者:Leah 欄目:編程語言

本篇文章為大家展示了怎么在python中使用threading創(chuàng)建線程,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

Python主要用來做什么

Python主要應(yīng)用于:1、Web開發(fā);2、數(shù)據(jù)科學(xué)研究;3、網(wǎng)絡(luò)爬蟲;4、嵌入式應(yīng)用開發(fā);5、游戲開發(fā);6、桌面應(yīng)用開發(fā)。

1、直接通過初始化thread對象創(chuàng)建:

#coding=utf-8
import threading,time
 
def test():
t = threading.currentThread()  # 獲取當(dāng)前子線程對象
print t.getName()  # 打印當(dāng)前子線程名字
 
i=0
while i<10:
     print i
     time.sleep(1)
     i=i+1
 
 
 
 
m=threading.Thread(target=test,args=(),name='循環(huán)子線程')   #初始化一個子線程對象,target是執(zhí)行的目標(biāo)函數(shù),args是目標(biāo)函數(shù)的參數(shù),name是子線程的名字
m.start()
t=threading.currentThread()   #獲取當(dāng)前線程對象,這里其實是主線程
print t.getName()   #打印當(dāng)前線程名字,其實是主線程名字

2、通過基礎(chǔ)thread類來創(chuàng)建

import threading,time
class myThread (threading.Thread):   #創(chuàng)建一個自定義線程類mythread,繼承Thread
 
def __init__(self,name):
    """
    重新init方法
    :param name: 線程名
    """
    super(myThread, self).__init__(name=name)
    # self.lock=lock
 
    print '線程名'+name
 
def run(self):
    """
    重新run方法,這里面寫我們的邏輯
    :return:
    """
    i=0
    while i<10:
        print i
        time.sleep(1)
        i=i+1
 
 
if __name__=='__main__':
t=myThread('mythread')
t.start()

上述內(nèi)容就是怎么在python中使用threading創(chuàng)建線程,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

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

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

AI