2018年7月27日
摘要: 1 __author__ = "JentZhang" 2 3 import time, threading, queue 4 5 q = queue.Queue(maxsize=10) # 声明队列 6 7 8 def Producer(name): 9 '''生产者''' 10 count = 1 11 while True: 12 ... 阅读全文
posted @ 2018-07-27 16:44 JentZhang 阅读(1526) 评论(0) 推荐(0)