python 队列
2020-12-13 03:09
标签:owa style col 编码 wait 顺序 元素 第一个 添加 一、分类 1、Queue() 2、LifoQueue() 3、PriorityQueue() python 队列 标签:owa style col 编码 wait 顺序 元素 第一个 添加 原文地址:https://www.cnblogs.com/wt7018/p/11069482.html# Queue 先进先出
import queue
q = queue.Queue()
q.put(‘a‘) # 向队列里添加数据,若队列已满,则阻塞
q.put_nowait(‘c‘) # 添加数据,若队列已满,则报错
q.get() # 从队列里取数据,若队列为空,则阻塞
q.get_nowait() # 从队列里取数据。若队列为空。则报错
q.empty() # 判断队列是否为空
q.full() # 判断队列是否满
import queue
# 先进后出
# 方法一样
q = queue.LifoQueue()
q.get()
q.put()
q.get_nowait()
q.put_nowait()
q.empty()
q.full()
import queue
# 按优先级取值,put的是tuple,第一个元素是顺序,若不是数字,则安装编码比较
q = queue.PriorityQueue()
q.put((10, ‘q‘))
q.put((5, ‘a‘))
print(q.get())
# 结果:(5, ‘a‘)
上一篇:python 退出程序的执行
下一篇:spring之aop详解