Python编程:多线程中的event
【摘要】 红绿灯实例,event事件
import time, threading
event = threading.Event()
# 交通灯
def lighter(): count = 0 while True: if count < 5: # 绿灯 event.set() #设置标志位 print("\033[42;1m 绿灯亮\033[0m") eli...
红绿灯实例,event事件
import time, threading
event = threading.Event()
# 交通灯
def lighter(): count = 0 while True: if count < 5: # 绿灯 event.set() #设置标志位 print("\033[42;1m 绿灯亮\033[0m") elif count > 10: count =0 # 清零重新计数 else: # 红灯 event.clear() # 清空标志位 print("\033[41;1m 红灯亮\033[0m") time.sleep(1) count += 1
# 车辆
def car(name): while True: if event.is_set(): # 绿灯亮 print("[%s]绿灯行..." % name) time.sleep(1) else: print("[%s]红灯停!!!" % name) event.wait() # 等待标志位设定 print("\033[34;1m绿灯出发\033[0m")
# 启动交通灯
t_lighter = threading.Thread(target=lighter)
t_lighter.start()
# 放入车辆
t_car1 = threading.Thread(target=car, args=("奥迪车",))
t_car2 = threading.Thread(target=car, args=("大众车",))
t_car1.start()
t_car2.start()
# 备注,\033在pycharm中有效果
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/79146183
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)