摘要: import threading import time class MyThead(threading.Thread): def __init__(self,func,args=()): super(MyThead,self).__init__() self.func = func self.args = args def... 阅读全文
posted @ 2018-02-11 21:00 来呀快活吧 阅读(348) 评论(0) 推荐(0) 编辑
cs