博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
event 实现两个程序的交互
阅读量:6268 次
发布时间:2019-06-22

本文共 1805 字,大约阅读时间需要 6 分钟。

event.wait() 等待一定时间,或者当遇到event.set() 时,继续执行 

event.clear() 清除信号 

event.set() 设置信号 

event.isset() 判断信号 

 

例一: 红绿灯

#event 实现两个线程之间的交互 import time, threading def lighter():     if not event.is_set():       event.set()     count = 0     while True:       if count<10:          print('the green light is run %s'%count)       elif count<15:          print('the yellow light is run %s'%count)       elif count<20:           print('the red light is run %s'%count)           event.clear()       else:           count = 0           event.set()       time.sleep(1)       count += 1 def cars(n):     while True:       if event.is_set():           print('%s is running'%n)       else:           print('%s is stoping'%n)       time.sleep(1) event = threading.Event() light = threading.Thread(target=lighter, args=()) light.start() car = threading.Thread(target=cars, args=('tesl', )) car.start() 例二 开关门
import threading, time, random def door():     door_count_number = 0     while True:         if door_state.is_set():             print('the door is open')             door_count_number += 1         else:             print('the door has been closed')             door_count_number = 0             door_state.wait()         if door_count_number > 3:             door_state.clear()         time.sleep(0.5) def staff(n):     print('%s is comming'%n)     while True:       if door_state.is_set():         print('%s is pass'%n)         break       else :         door_state.set()         print('staff[%s]sees door got closed, swipped the card')       time.sleep(0.5) door_state = threading.Event() Door = threading.Thread(target=door) Door.start() for i in range(5):     p = threading.Thread(target=staff, args=(i, ))     time.sleep(random.randrange(3))     p.start()
 

 

转载于:https://www.cnblogs.com/my-love-is-python/p/9134813.html

你可能感兴趣的文章
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
MaxCompute 学习计划(一)
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
查看>>
《从零开始学Swift》学习笔记(Day 51)——扩展构造函数
查看>>