真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Pythonthreading模塊的常用方法是什么

本篇內(nèi)容介紹了“Python threading模塊的常用方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

我們提供的服務有:成都網(wǎng)站制作、成都做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、高州ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的高州網(wǎng)站制作公司

說明

1、threading.curentthread():返回當前線程變量。

2、threading.enumerate():返回包含正在運行的線程的list。指線程啟動后和結束前不包括啟動前和結束后的線程。

threading.activeCount():與len(threading.enumerate()有相同的結果。

實例

"""
python threading模塊的常用方法
"""
import time
import threading
 
 
def test1():
    print('------test1-------')
    time.sleep(3)
 
 
def test2():
    print('------test2-------')
    time.sleep(3)
 
 
def main():
 
    t1 = threading.Thread(target=test1)
    t2 = threading.Thread(target=test2)
 
    t1.start()
    t2.start()
 
    print('activeCount: %d' % threading.activeCount())
    print(threading.enumerate())
 
    while threading.activeCount() != 1:
            time.sleep(1)
            print(threading.enumerate())
 
    print(threading.enumerate())
 
 
if __name__ == '__main__':
    main()

“Python threading模塊的常用方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質量的實用文章!


當前名稱:Pythonthreading模塊的常用方法是什么
當前網(wǎng)址:http://weahome.cn/article/poiscp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部