我只想知道如何像普通的python队列一样清除python中的多处理队列。例如:
from multiprocessing import Queue # multiprocessing queue
from Queue import Queue # normal queue
multi_q = Queue()
normal_q = Queue()
multi_q.clear() # or multi_q.queue.clear()
“队列”对象没有属性“清除”
normal_q.queue.clear() # This is ok