摘要: ```import threadingfrom queue import Queueclass ThreadPush(threading.Thread): def __init__(self, threadName, my_queue): # 继承父类的方法 super(ThreadPush, self).__init__() self.thread... 阅读全文
posted @ 2020-05-08 16:46 huim 阅读(313) 评论(0) 推荐(0) 编辑