Python 多线程实例详解
Python多线程实例详解
多线程通常是新开一个后台线程去处理比较耗时的操作,Python做后台线程处理也是很简单的,今天从官方文档中找到了一个Demo.
实例代码:
importthreading,zipfile
classAsyncZip(threading.Thread):
def__init__(self,infile,outfile):
threading.Thread.__init__(self)
self.infile=infile
self.outfile=outfile
defrun(self):
f=zipfile.ZipFile(self.outfile,'w',zipfile.ZIP_DEFLATED)
f.write(self.infile)
f.close()
print('Finishedbackgroundzipof:',self.infile)
background=AsyncZip('mydata.txt','myarchive.zip')
background.start()
print('Themainprogramcontinuestoruninforeground.')
background.join()#Waitforthebackgroundtasktofinish
print('Mainprogramwaiteduntilbackgroundwasdone.')
结果:
Themainprogramcontinuestoruninforeground. Finishedbackgroundzipof:mydata.txt Mainprogramwaiteduntilbackgroundwasdone. Pressanykeytocontinue...
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短