摘要: # -*- coding:utf-8 -*- import Queue import time import threading # 需要执行的业务主体 def domain(id): time.sleep(2) print(id, "done") class update_proccess(threading.Thread): def __init__(self,... 阅读全文
posted @ 2018-08-14 11:22 一个和🔥有缘的人 阅读(625) 评论(0) 推荐(0) 编辑