博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 线程类
阅读量:6232 次
发布时间:2019-06-21

本文共 744 字,大约阅读时间需要 2 分钟。

线程类主动创建线程对象

import threadingimport timedef listen():    print("listen")    time.sleep(3)    print("listen over")def writeblog():    print("writeblog")    time.sleep(5)    print("writeblog over")    print(time.time()-s)s=time.time()# 线程对象t1=threading.Thread(target=listen)t2=threading.Thread(target=writeblog)t1.start()t2.start()print("ending")

  

继承线程类创建对象

#继承Thread式创建import threadingimport timeclass MyThread(threading.Thread):    def __init__(self,num):        threading.Thread.__init__(self)        self.num=num    def run(self):        print("running on number:%s" %self.num)        # 睡三秒程序结束        time.sleep(3)t1=MyThread(56)t2=MyThread(78)t1.start()t2.start()print("ending")

  

转载于:https://www.cnblogs.com/adamans/articles/7568122.html

你可能感兴趣的文章
tomcat虚拟主机 server.xml文件配置
查看>>
i-checks 简单应用
查看>>
列举数据挖掘领域的十大挑战性问题
查看>>
校园网解决方案分析
查看>>
Web Component 实战 读书笔记
查看>>
SpringMVC 参数注解
查看>>
源码构建lamp环境
查看>>
第四周作业
查看>>
/boot目录存储空间满导致apt-get安装软件失败
查看>>
LaTeX - 可伸缩箭头
查看>>
关于IT
查看>>
flask-SqlAlchemy QueuePool limit of size 5 overflow 10 reached
查看>>
显示salt进程具体名称
查看>>
HTTP GET方式提交与POST方式提交
查看>>
mysql5.7虚拟列初次尝试
查看>>
Exchange server2013 搭建步骤
查看>>
购物车
查看>>
Java基础学习总结(2)——接口
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
配置Linux 免密码登陆
查看>>