• Python中queue消息队列模块


    from queue import Queue
    from queue import PriorityQueue
    
    print("Queue类实现了一个基本的先进先出(FIFO)容器,使用put()将元素添加到序列尾端,get()从队列尾部移除元素。
    ")
    
    q = Queue()
    
    for i in range(3):
        q.put(i)
    
    while not q.empty():
        print(q.get())
    
    print("与标准FIFO实现Queue不同的是,LifoQueue使用后进先出序(会关联一个栈数据结构)。
    ")
    
    from queue import LifoQueue
    
    q1 = LifoQueue()
    
    for i in range(3):
        q1.put(i)
    
    while not q1.empty():
        print(q1.get())
    
    print("除了按元素入列顺序外,有时需要根据队列中元素的特性来决定元素的处理顺序。例如,老板的打印任务可能比研发的打印任务优先级更高。PriorityQueue依据队列中内容的排序顺序(sort order)来决定那个元素将被检索。")
    
    
    class Job(object):
        def __init__(self, priority, description):
            self.priority = priority
            self.description = description
            print('New job:', description)
            return
    
        def __lt__(self, other):
            return self.priority < other.priority
    
    
    q2 = PriorityQueue()
    
    q2.put(Job(5, 'Mid-level job'))
    q2.put(Job(10, 'Low-level job'))
    q2.put(Job(1, 'Important job'))  # 数字越小,优先级越高
    
    while not q2.empty():
        next_job = q2.get()  # 可根据优先级取序列
        print('Processing job', next_job.description)
  • 相关阅读:
    Blob
    MySQL This function has none of DETERMINISTIC, NO SQL...错误1418 的原因分析及解决方法 (转)
    事务--存储过程
    JDBC-Mysql-编译预处理(占位符)
    socket
    GUI---深度复制
    串行化--深度复制
    RESTful理解
    django中文和时区的配置
    redis-server报错
  • 原文地址:https://www.cnblogs.com/john-xiong/p/11778345.html
Copyright © 2020-2023  润新知