多线程相关知识:http://www.cnblogs.com/linhaifeng/articles/7428877.html
一 守护进程的应用:
其实还是在我们生产者与消费者的模型上加上守护进程的概念,使得我们的进程能够在任务执行完之后正常的退出。
import time import random from multiprocessing import Process,JoinableQueue #我们在这里导入一个joinableQueue模块, def consumer(name,q): while True: res=q.get() if res is None:break time.sleep(random.randint(1,3)) print('