标签:code for 多个 imp style thread 任务 pre list
import threading #第一步,定义需要多线程运行的函数 def test(i): print(1) list1 = []#创建存放多线程的列表 #第二步,生成。分别建立多个线程,a,b同时执行一个相同的任务 for i in range(10): th = threading.Thread(target = test,args=[i])#这里的th就是生成的多个线程,只是还没有启动 # 第三步,启动。可以指定哪一个先运行 th.start()#将每一个线程启动 list1.append(th)#把多个线程放进列表里 #可设置控制,join()表示执行完以上的,才会往下执行,究其原因就是python的线程切换是随意的,无需的 for j in list1: j.join() print("最后执行我才是!~")
标签:code for 多个 imp style thread 任务 pre list
原文地址:http://www.cnblogs.com/themost/p/6882941.html