摘要: import threading import Queue class Test(threading.Thread): def __init__(self, q): self.queue = q threading.Thread.__init__(self) def run(self): while True: ... 阅读全文
posted @ 2018-04-24 18:34 jhc888007 阅读(109) 评论(0) 推荐(0) 编辑