Python多线程threading的套用模板
2022/5/24 5:19:52
本文主要是介绍Python多线程threading的套用模板,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import threading from time import ctime,sleep class MyThread(threading.Thread): """自定义多线程类""" def __init__(self,func,args,name=''): threading.Thread.__init__(self) self.name=name self.func=func self.args=args def run(self): """自定义线程执行计时功能""" print("线程",self.name,"开始于:",ctime()) self.res=self.func(*self.args) #执行传入的函数 print("线程",self.name,"结束于:",ctime()) def getResult(self): """获取线程结果""" return self.res #定义三个测试函数 def fib(x): """斐波那契""" sleep(0.005) if x<2:return 1 return fib(x-2)+fib(x-1) def fac(x): """阶乘""" sleep(0.1) if x<2:return 1 return x*fac(x-1) def sumsum(x): """累加""" sleep(0.1) if x<2:return 1 return x+sumsum(x-1) n=12 #用n求函数结果 funclist=[fib,fac,sumsum] #函数名加入列表 def main(): nfuncs=range(len(funclist)) #待执行函数数量范围列表 print('单线程执行:') print('-'*20) for i in nfuncs: print('开始执行函数',funclist[i].__name__,"于",ctime()) print('函数',funclist[i].__name__,'的执行结果是:',funclist[i](n)) print('结束函数',funclist[i].__name__,"于",ctime()) print('*'*20) print('-'*20) print('多线程执行:') threads=[] #线程对象列表 for i in nfuncs: #将线程对象全部加入列表 t=MyThread(funclist[i],(n,),funclist[i].__name__) #参数第二个必须是元组 threads.append(t) for i in nfuncs: #开始全部线程 threads[i].start() for i in nfuncs: threads[i].join() #等待线程结束 print(threads[i].getResult()) #打印结果 #print('函数',threads[i].name,'的执行结果是:',threads[i].getResult()) #打印结果 print('所有任务完成') if __name__=='__main__': main()
这篇关于Python多线程threading的套用模板的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门