摘要: 启动多线程 import threading def change_model(app): print("change start") t1 = threading.Thread(target=change_model, args=(app,)) t1.start() 锁 锁有两种,一种是只能锁一次 阅读全文
posted @ 2020-03-17 19:39 Ryan_W 阅读(182) 评论(0) 推荐(0) 编辑