Python实现的生产者、消费者问题完整实例


Posted in Python onMay 30, 2018

本文实例讲述了Python实现的生产者、消费者问题。分享给大家供大家参考,具体如下:

生产者、消费者问题,经典的线程同步问题:假设有一个缓冲池(列表),生产者往里面放东西,消费者从里面取,规则是:列表为空的时候,生产者才能放东西;列表不为空的时候,消费者才能取东西;为了简单起见,暂定缓冲池中最多只能有一个产品。这里生产者和消费者共同操作一个资源:缓冲池,因此每次操作的时候,需要给资源加锁,操作结束时,释放锁,这样才能做到资源同步。使用python实现,需要继承Thread类,获取锁对象,代码如下:

# -*- coding:utf-8 -*-
#! python2
from threading import Thread
from threading import Lock
import time,random
pro_list = []
lock = Lock()
class Producer(Thread):
  def run(self):
    global pro_list
    while True:
      i = random.randint(0, 100)
      lock.acquire()
      if len(pro_list) > 0:
        print "!--product still in list, wait consumer to get it.."
      else:
        pro_list.append(i)
        print ":::Producer put:", pro_list[0]
      lock.release()
      time.sleep(2)
class Consumer(Thread):
  def run(self):
    global pro_list
    while True:
      lock.acquire()
      if len(pro_list) == 0:
        print "!--No product now, wait producer put in..."
      else:
        print ":::Consumer fetch:", pro_list[0]
        pro_list.pop(0)
      lock.release()
      time.sleep(2)
Producer().start()
Producer().start()
Consumer().start()
Producer().start()
Producer().start()
Consumer().start()
Consumer().start()

这里使用多个生产者和消费者,共同操作缓冲池,部分执行结果如下:

:::Producer put: 78
!--product still in list, wait consumer to get it..
:::Consumer fetch: 78
:::Producer put: 99
!--product still in list, wait consumer to get it..
:::Consumer fetch: 99
!--No product now, wait producer put in...
:::Producer put: 12
:::Consumer fetch: 12
:::Producer put: 91
!--product still in list, wait consumer to get it..
!--product still in list, wait consumer to get it..
:::Consumer fetch: 91
!--No product now, wait producer put in...
:::Producer put: 63
:::Consumer fetch: 63
:::Producer put: 85
!--product still in list, wait consumer to get it..
!--product still in list, wait consumer to get it..
:::Consumer fetch: 85
!--No product now, wait producer put in...
:::Producer put: 1
:::Consumer fetch: 1
:::Producer put: 26
!--product still in list, wait consumer to get it..
!--product still in list, wait consumer to get it..
:::Consumer fetch: 26
!--No product now, wait producer put in...
:::Producer put: 8
:::Consumer fetch: 8
:::Producer put: 19
!--product still in list, wait consumer to get it..
!--product still in list, wait consumer to get it..
:::Consumer fetch: 19
!--No product now, wait producer put in...
:::Producer put: 74
!--product still in list, wait consumer to get it..
:::Consumer fetch: 74
:::Producer put: 50
!--product still in list, wait consumer to get it..
:::Consumer fetch: 50
!--No product now, wait producer put in...
:::Producer put: 97
:::Consumer fetch: 97
:::Producer put: 69
!--product still in list, wait consumer to get it..
!--product still in list, wait consumer to get it..
:::Consumer fetch: 69
!--No product now, wait producer put in...
:::Producer put: 41
!--product still in list, wait consumer to get it..
:::Consumer fetch: 41
:::Producer put: 6
!--product still in list, wait consumer to get it..
:::Consumer fetch: 6
!--No product now, wait producer put in...

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
Python实现加载及解析properties配置文件的方法
Mar 29 Python
Python实现正弦信号的时域波形和频谱图示例【基于matplotlib】
May 04 Python
Python操作Excel插入删除行的方法
Dec 10 Python
python抓取搜狗微信公众号文章
Apr 01 Python
python验证身份证信息实例代码
May 06 Python
python matplotlib库绘制散点图例题解析
Aug 10 Python
利用Python校准本地时间的方法教程
Oct 31 Python
python实现根据文件格式分类
Oct 31 Python
pycharm不能运行.py文件的解决方法
Feb 12 Python
什么是Python包的循环导入
Sep 08 Python
Pycharm自动添加文件头注释和函数注释参数的方法
Oct 23 Python
pd.drop_duplicates删除重复行的方法实现
Jun 16 Python
Django 忘记管理员或忘记管理员密码 重设登录密码的方法
May 30 #Python
解决Django数据库makemigrations有变化但是migrate时未变动问题
May 30 #Python
Python实现的本地文件搜索功能示例【测试可用】
May 30 #Python
Pycharm 创建 Django admin 用户名和密码的实例
May 30 #Python
Django使用详解:ORM 的反向查找(related_name)
May 30 #Python
Python实现决策树C4.5算法的示例
May 30 #Python
python实现决策树ID3算法的示例代码
May 30 #Python
You might like
PHP读取大文件末尾N行的高效方法推荐
2016/06/03 PHP
Yii2框架类自动加载机制实例分析
2018/05/02 PHP
关于Yii2框架跑脚本时内存泄漏问题的分析与解决
2019/12/01 PHP
使用jQuery插件创建常规模态窗口登陆效果
2013/08/23 Javascript
Node.js开发指南中的简单实例(mysql版)
2013/09/17 Javascript
Javascript学习笔记之 对象篇(一) : 对象的使用和属性
2014/06/24 Javascript
了不起的node.js读书笔记之node.js中的特性
2014/12/22 Javascript
基于JavaScript实现购物网站商品放大镜效果
2016/09/06 Javascript
js HTML5多媒体影音播放
2016/10/17 Javascript
解析利用javascript如何判断一个数为素数
2016/12/08 Javascript
使用Bootstrap + Vue.js实现添加删除数据示例
2017/02/27 Javascript
利用yarn代替npm管理前端项目模块依赖的方法详解
2017/09/04 Javascript
JS实现前端缓存的方法
2017/09/21 Javascript
vue加载自定义的js文件方法
2018/03/13 Javascript
详解在React里使用"Vuex"
2018/04/02 Javascript
js实现通过开始结束控制的计时器
2019/02/25 Javascript
微信小程序添加插屏广告并设置显示频率(一天一次)
2019/12/06 Javascript
小程序实现长按保存图片的方法
2019/12/31 Javascript
[37:35]DOTA2上海特级锦标赛A组资格赛#1 Secret VS MVP.Phx第二局
2016/02/25 DOTA
[01:12:44]VG vs Mineski Supermajor 败者组 BO3 第二场 6.6
2018/06/07 DOTA
[06:43]2018DOTA2国际邀请赛寻真——VGJ.Thunder
2018/08/11 DOTA
python 实现在Excel末尾增加新行
2018/05/02 Python
Pycharm保存不能自动同步到远程服务器的解决方法
2019/06/27 Python
Pycharm连接远程服务器过程图解
2020/04/30 Python
python能在浏览器能运行吗
2020/06/17 Python
HTML5 canvas标签实现刮刮卡效果
2015/04/24 HTML / CSS
美国睫毛、眉毛精华液领导品牌:RevitaLash Cosmetics
2018/03/26 全球购物
印尼购物网站:iLOTTE
2019/10/16 全球购物
企业军训感言
2014/02/08 职场文书
2014年接待工作总结
2014/11/26 职场文书
2015年宣传部工作总结范文
2015/03/31 职场文书
中秋节主题班会
2015/08/14 职场文书
win10下go mod配置方式
2021/04/25 Golang
javascript遍历对象的五种方式实例代码
2021/10/24 Javascript
搞笑Gif:这么白这么长的腿像极了一楼的女朋友
2022/03/21 杂记
Spring中的@Transactional的工作原理
2022/06/05 Java/Android