鱼C论坛

 找回密码
 立即注册
查看: 1594|回复: 0

[技术交流] 学习多线程,同时打印多个文件内容

[复制链接]
发表于 2020-5-27 14:51:55 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Cool_Breeze 于 2020-5-27 14:53 编辑
#!/usr/bin/env python3
#coding=utf-8

from time import time
import threading
#列表长度觉得开启线程数量
loops = ['1.txt','2.txt']

#派生Thread的子类
class threadFunc(threading.Thread):
    def __init__(self,func,args,name=''):
        threading.Thread.__init__(self)
        self.func = func
        self.args = args
        self.name = name
    def run(self):
        self.func(*self.args)

def loop(name):
    with open(name,'r') as f:
        for line in f:
            if '\n' in line:
                print (name,' :',line,end='')
            else:
                print (name,' :',line)
    
def main():
    print('starting at:',time())
    #线程锁
    threadkey = []
    nloops = range(len(loops))
    
    for i in nloops:
        #get线程锁
        #创建子类的实例
        t = threadFunc(loop,(loops[i],),loop.__name__)
        threadkey.append(t)
    
    #开启线程
    for i in nloops:
        threadkey[i].start()
    #等待所有线程结束
    for i in nloops:
        threadkey[i].join()
        
    print('All Done at:',time())
    
if __name__ == '__main__':
    main()
starting at: 1590562220.892479
1.txt  : 1005495524----a111111
1.txt  : 1005495524----abc123
2.txt  : 1111qqqq1111---a111111
1.txt  : 1005495524----aini1314
2.txt  : 1111qqqq1111---abc123
1.txt  : 1005495524----iloveyou
2.txt  : 1111qqqq1111---aini1314
1.txt  : 1005495524----q1w2e3r4
2.txt  : 111qqq111---a111111
1.txt  : 1005495524----qq123123
2.txt  : 111qqq111---abc123
2.txt  : 111qqq111---aini1314
All Done at: 1590562220.892479

请按任意键继续. . .
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-21 00:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表