2013年11月19日

多线程共享一个队列

摘要: 1 # -*- coding:utf-8 -*- 2 import threading 3 from time import sleep 4 lock = threading.Lock() 5 tmp_list = [] 6 class MyThread(threading.Thread): 7 """ 8 此线程用于向公共队列中追加元素 9 """10 def __init__(self):11 threading.Thread.__init__(self) 12 #: 向公共队列追加元素13 def run(self):14... 阅读全文

posted @ 2013-11-19 11:10 JohnChain 阅读(1273) 评论(0) 推荐(0) 编辑

导航