中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

什么是Python中的threading模塊

發布時間:2020-08-25 16:16:31 來源:億速云 閱讀:247 作者:Leah 欄目:編程語言

什么是Python中的threading模塊?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

threading提供了一個比thread模塊更高層的API來提供線程的并發性。這些線程并發運行并共享內存。 

下面來看threading模塊的具體用法: 

一、Thread的使用,目標函數可以實例化一個Thread對象,每個Thread對象代表著一個線程,可以通過start()方法,開始運行。

這里對使用多線程并發,和不適用多線程并發做了一個比較:

首先是不使用多線程的操作:

代碼如下:

#!/usr/bin/python
#compare for multi threads
import time
 
def worker():
    print "worker"
    time.sleep(1)
    return
 
if __name__ == "__main__":
    for i in xrange(5):
        worker()

執行結果如下:

下面是使用多線程并發的操作:

代碼如下:

#!/usr/bin/python
import threading
import time
 
def worker():
    print "worker"
    time.sleep(1)
    return
 
for i in xrange(5):
    t = threading.Thread(target=worker)
    t.start()

可以明顯看出使用了多線程并發的操作,花費時間要短的很多。

二、threading.activeCount()的使用,此方法返回當前進程中線程的個數。返回的個數中包含主線程。

代碼如下:

#!/usr/bin/python
#current's number of threads
import threading
import time
 
def worker():
    print "test"
    time.sleep(1)
 
for i in xrange(5):
    t = threading.Thread(target=worker)
    t.start()
 
print "current has %d threads" % (threading.activeCount() - 1)

三、threading.enumerate()的使用。此方法返回當前運行中的Thread對象列表。

相關推薦:《Python視頻教程》

代碼如下:

#!/usr/bin/python
#test the variable threading.enumerate()
import threading
import time
 
def worker():
    print "test"
    time.sleep(2)
 
threads = []
for i in xrange(5):
    t = threading.Thread(target=worker)
    threads.append(t)
    t.start()
 
for item in threading.enumerate():
    print item
 
print
 
for item in threads:
    print item

四、threading.setDaemon()的使用。設置后臺進程。

代碼如下:

#!/usr/bin/python
#create a daemon
import threading
import time
 
def worker():
    time.sleep(3)
    print "worker"
 
t=threading.Thread(target=worker)
t.setDaemon(True)
t.start()
print "haha"

可以看出worker()方法中的打印操作并沒有顯示出來,說明已經成為后臺進程。

threading.Thread

Thread 是threading模塊中最重要的類之一,可以使用它來創建線程。有兩種方式來創建線程:一種是通過繼承Thread類,重寫它的run方法;另一種是創建一個threading.Thread對象,在它的初始化函數(__init__)中將可調用對象作為參數傳入。下面分別舉例說明。先來看看通過繼承threading.Thread類來創建線程的例子:

#coding=gbk
import threading, time, random
count = 0
class Counter(threading.Thread):
  def __init__(self, lock, threadName):
     
'''@summary: 初始化對象。
      
     
@param lock: 瑣對象。
     
@param threadName: 線程名稱。
     
'''
    super(Counter, self).__init__(name = threadName)
#注意:一定要顯式的調用父類的初始
化函數。
    self.lock = lock
    
  def run(self):
     
'''@summary: 重寫父類run方法,在線程啟動后執行該方法內的代碼。
     
'''
    global count
    self.lock.acquire()
    for i in xrange(10000):
      count = count + 1
    self.lock.release()
lock = threading.Lock()
for i in range(5):
  Counter(lock, "thread-" + str(i)).start()
time.sleep(2) 
#確保線程都執行完畢
print count

在代碼中,我們創建了一個Counter類,它繼承了threading.Thread。初始化函數接收兩個參數,一個是鎖對象,另一個是線程的名稱。在Counter中,重寫了從父類繼承的run方法,run方法將一個全局變量逐一的增加10000。在接下來的代碼中,創建了五個Counter對象,分別調用其start方法。最后打印結果。這里要說明一下run方法 和start方法: 它們都是從Thread繼承而來的,run()方法將在線程開啟后執行,可以把相關的邏輯寫到run方法中(通常把run方法稱為活動[Activity]。);start()方法用于啟動線程。


看完上述內容,你們掌握什么是Python中的threading模塊的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

蒙自县| 盐池县| 邮箱| 巴彦淖尔市| 石棉县| 康马县| 信宜市| 栾城县| 曲松县| 益阳市| 池州市| 永康市| 祁连县| 鄱阳县| 大同市| 乌恰县| 赣州市| 榆林市| 东丰县| 临颍县| 札达县| 定边县| 家居| 石台县| 丹棱县| 拉萨市| 武宁县| 新津县| 旬邑县| 武宣县| 读书| 大理市| 南郑县| 金坛市| 浦县| 阿荣旗| 玉溪市| 溧水县| 桃园市| 仪陇县| 贡山|