Posted in Python onApril 25, 2020
我就废话不多说了,还是直接看代码吧!
from time import ctime import threading import time def a(): #for i in range(5): print('Program a is running... at ', ctime(),u'.线程名为:',threading.current_thread().name ) time.sleep(0.2) def b(x): #for i in range(5): print('Program b('+x+') is running... at ', ctime(),u'.线程名为:',threading.current_thread().name ) time.sleep(0.1) if __name__ == '__main__': print('Mainthread %s is running...' % threading.current_thread().name) thread_list = [] for i in range(400):#同时运行多个 t1= threading.Thread(target=a) thread_list.append(t1) t2 = threading.Thread(target=b, args=('Python',)) thread_list.append(t2) t3 = threading.Thread(target=b, args=('Java',)) thread_list.append(t3) for t in thread_list: t.setDaemon(True) # 设置为守护线程,不会因主线程结束而中断 t.start() for t in thread_list: t.join() # 子线程全部加入,主线程等所有子线程运行完毕 print('Mainthread %s ended.' % threading.current_thread().name)
补充知识:Python主线程结束为什么守护线程还在运行?
在实际的交互模式中,主线程只有在Python退出时才终止,所以action函数输出结果还是被打印出来了。”
按照我的理解应该是说,在shell里主线程在输出结果之后并没有真的结束,所以action还会打印结果。
建议把程序编译出来,放到另外的环境中测试,估计就会是你要的结果了。
以上这篇Python多线程:主线程等待所有子线程结束代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
Python多线程:主线程等待所有子线程结束代码
- Author -
woho778899声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@