前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python笔记12-python多线程之事件(Event)

python笔记12-python多线程之事件(Event)

作者头像
上海-悠悠
发布2018-04-08 17:55:43
1.3K0
发布2018-04-08 17:55:43
举报
文章被收录于专栏:从零开始学自动化测试

前言

小伙伴a,b,c围着吃火锅,当菜上齐了,请客的主人说:开吃!,于是小伙伴一起动筷子,这种场景如何实现

一、 Event(事件)

Event(事件):事件处理的机制:全局定义了一个内置标志Flag,如果Flag值为 False,那么当程序执行 event.wait方法时就会阻塞,如果Flag值为True,那么event.wait 方法时便不再阻塞。

Event其实就是一个简化版的 Condition。Event没有锁,无法使线程进入同步阻塞状态。

Event()

- set(): 将标志设为True,并通知所有处于等待阻塞状态的线程恢复运行状态。

- clear(): 将标志设为False。

- wait(timeout): 如果标志为True将立即返回,否则阻塞线程至等待阻塞状态,等待其他线程调用set()。

- isSet(): 获取内置标志状态,返回True或False。

二、 Event案例1

场景:小伙伴a和b准备就绪,当收到通知event.set()的时候,会执行a和b线程

```

# coding:utf-8

import threading

import time

event = threading.Event()

def chihuoguo(name):

# 等待事件,进入等待阻塞状态

print '%s 已经启动' % threading.currentThread().getName()

print '小伙伴 %s 已经进入就餐状态!'%name

time.sleep(1)

event.wait()

# 收到事件后进入运行状态

print '%s 收到通知了.' % threading.currentThread().getName()

print '小伙伴 %s 开始吃咯!'%name

# 设置线程组

threads = []

# 创建新线程

thread1 = threading.Thread(target=chihuoguo, args=("a", ))

thread2 = threading.Thread(target=chihuoguo, args=("b", ))

# 添加到线程组

threads.append(thread1)

threads.append(thread2)

# 开启线程

for thread in threads:

thread.start()

time.sleep(0.1)

# 发送事件通知

print '主线程通知小伙伴开吃咯!'

event.set()

```

运行结果:

```

Thread-1 已经启动

小伙伴 a 已经进入就餐状态!

Thread-2 已经启动

小伙伴 b 已经进入就餐状态!

主线程通知小伙伴开吃咯!

Thread-1 收到通知了.

小伙伴 a 开始吃咯!

Thread-2 收到通知了.

小伙伴 b 开始吃咯!

```

二、 Event案例2

场景:当小伙伴a,b,c集结完毕后,请客的人发话:开吃咯!

```

# coding:utf-8

import threading

import time

event = threading.Event()

def chiHuoGuo(name):

# 等待事件,进入等待阻塞状态

print '%s 已经启动' % threading.currentThread().getName()

print '小伙伴 %s 已经进入就餐状态!'%name

time.sleep(1)

event.wait()

# 收到事件后进入运行状态

print '%s 收到通知了.' % threading.currentThread().getName()

print '%s 小伙伴 %s 开始吃咯!'%(time.time(), name)

class myThread (threading.Thread): # 继承父类threading.Thread

def __init__(self, people, name):

'''重写threading.Thread初始化内容'''

threading.Thread.__init__(self)

self.threadName = name

self.people = people

def run(self): # 把要执行的代码写到run函数里面 线程在创建后会直接运行run函数

'''重写run方法'''

print("开始线程: " + self.threadName)

chiHuoGuo(self.people) # 执行任务

print("qq交流群:226296743")

print("结束线程: " + self.name)

# 设置线程组

threads = []

# 创建新线程

thread1 = threading.Thread(target=chiHuoGuo, args=("a", ))

thread2 = threading.Thread(target=chiHuoGuo, args=("b", ))

thread3 = threading.Thread(target=chiHuoGuo, args=("c", ))

# 添加到线程组

threads.append(thread1)

threads.append(thread2)

threads.append(thread3)

# 开启线程

for thread in threads:

thread.start()

time.sleep(0.1)

# 发送事件通知

print 'YOYO:集合完毕,人员到齐了,开吃咯!'

event.set()

```

运行结果:

```

Thread-1 已经启动

小伙伴 a 已经进入就餐状态!

Thread-2 已经启动

小伙伴 b 已经进入就餐状态!

Thread-3 已经启动

小伙伴 c 已经进入就餐状态!

YOYO:集合完毕,人员到齐了,开吃咯!

Thread-1 收到通知了.

1516779534.13 小伙伴 a 开始吃咯!

Thread-3 收到通知了.Thread-2 收到通知了.

1516779534.13 小伙伴 c 开始吃咯!1516779534.13 小伙伴 b 开始吃咯!

本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2018-01-24,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 从零开始学自动化测试 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档