摘要: ```python import threading,_thread def action(i): print(i **32) #带有状态的子类 class Mythread(threading.Thread): def __init__(self, i): self.i = i threading.Thread.__init__(self) ... 阅读全文
posted @ 2018-06-11 13:34 大头大头灬下雨不愁 阅读(1959) 评论(0) 推荐(0) 编辑