摘要: Event是一个简单的同步的对象。 event = threading.Event() 生成event对象 event.set() 设置标志位 event.clear() 清空标志位 event.wait() 等待标志位被设定(阻塞) event.is_set() 标志位是否被设定 红绿灯模型,假如 阅读全文
posted @ 2018-12-30 23:32 AllenZhang_(*^▽^*) 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 线程锁(也称互斥锁)是同一时间只允许一个线程在执行,信号量可以用来表示同一时间允许执行的线程的数目。 结果可以看到是五个五个的一起执行 run the thread: 0run the thread: 3run the thread: 4run the thread: 2run the thread 阅读全文
posted @ 2018-12-30 23:14 AllenZhang_(*^▽^*) 阅读(134) 评论(0) 推荐(0) 编辑