当前位置:
首页 > temp > python入门教程 >
-
Python连载32-多线程其他属性以及继承Thread类
一、线程常用属性
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(心悦君兮君不知-睿)
出 处:https://www.cnblogs.com/ruigege0000/p/11397571.html
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数