一、線程常用屬性 1.threading.currentThread:返回當前線程變數 2.threading.enumerate:返回一個包含正在運行的線程的list,正在運行的線程指的是線程啟動後,結束前的狀態 3.threading.activeCount:返回正在運行的線程數量,效果跟len ...
一、線程常用屬性
1.threading.currentThread:返回當前線程變數
2.threading.enumerate:返回一個包含正在運行的線程的list,正在運行的線程指的是線程啟動後,結束前的狀態
3.threading.activeCount:返回正在運行的線程數量,效果跟len(threading.enumer)一樣
4.thr.setName:給線程設置名字
5.thr.getName:得到線程的名字。
舉例:
i
mport _thread as thread import time def loop1(in1): print("Start loop 1 at:",time.ctime()) print("我是參數",in1) time.sleep(4) print("End loop 1 at:",time.ctime()) def loop2(in1,in2): print("Start loop 2 at:",time.ctime()) print("我是參數",in1,"和參數 ",in2) time.sleep(4) print("End loop 2 at:",time.ctime()) import threading def main1(): print("Starting at:",time.ctime()) t1 = threading.Thread(target=loop1,args=('',)) t1.setName("THR_1")#給線程重命名 t1.start() t2 = threading.Thread(target=loop2,args=('','')) t2.setName("THR_2") t2.setDaemon(True) #主線程運行完了就完了,不用等線程2 t2.start() time.sleep(3)#三秒後兩個子線程仍然在運行著,因為他們裡面有一個四秒在停著 for thr in threading.enumerate():#返回的是正在運行的子線程的列表 print("正在運行的子線程名為:{0}".format(thr.getName()))#讀取了該線程的名字 print("正在運行的子線程數量為:{0}".format(threading.activeCount()))#列印出了線程的數量,包括主線程和兩個子線程一共3個線程 t1.join()#等線程1運行完了再接著向下運行 print("ALL done at :",time.ctime()) if __name__ == "__main__": main1()
二、直接繼承子類threading.Thread
1.直接繼承Thread;重寫run函數
2.例子:
class MyThread(threading.Thread):#定義一個Thread的子類 def __init__(self,args):#重寫__init__函數,其中參數為self和新引入的參數 super(MyThread,self).__init__()#固定格式,繼承父類的__init__函數 self.args = args def run(self): time.sleep(1) print("The args for this class is {0}".format(self.args)) for i in range(5): t = MyThread(i) t.start() t.join()
三、源碼
d24_3_other_multi_thread_attribute.py
https://github.com/ruigege66/Python_learning/blob/master/d24_3_other_multi_thread_attribute.py
2.CSDN:https://blog.csdn.net/weixin_44630050(心悅君兮君不知-睿)
3.博客園:https://www.cnblogs.com/ruigege0000/
4.歡迎關註微信公眾號:傅里葉變換,後臺回覆”禮包“,獲取大數據學習資料