摘要: 1 #多线程模板 2 import threading 3 class A(threading.Thread): 4 def __init__(self): 5 threading.Thread.__init__(self) 6 def run(self): 7 for i in range(0,10): 8 ... 阅读全文
posted @ 2018-09-19 11:15 发酸的丶蛋炒饭 阅读(362) 评论(0) 推荐(0) 编辑