摘要:
import threading,time class Boss(threading.Thread): def run(self): print("We must work today!") event.isSet() or event.set() time.sleep(5) print("You 阅读全文
摘要:
python中的信号量,是通过定义semaphore对象,控制同时可以运行的线程的数量,同时也是一种锁,下面的代码演示了信号量的应用 import threading,time class MyThread(threading.Thread): def __init__(self,name): th 阅读全文