摘要: import threading class MyThread(threading.Thread): def __init__(self,func,args=()): super(MyThread,self).__init__() self.func = func self.args = args def run(self)... 阅读全文
posted @ 2019-04-19 17:33 aaronthon 阅读(1173) 评论(0) 推荐(0) 编辑