由于multiprocess模块中的Queue是遵循先进先出的,在一些项目中无法使用,有些项目需要后进先出。
于是想到使用queue模块中的LifoQueue,(LIFO)即last input first output,但发现进程中无法使用
下面试代码,运行后就会知道
import queue
# import threading
#
# def f(q):
# q.put(1)
# q.put(2)
#
# q = queue.LifoQueue()
#
# a = threading.Thread(target=f, args=(q,))
# a.start()
# a.join()
# print(q.get())
from multiprocessing import Process,Queue
def f(q):
q.put(1)
q.put(2)
q = Queue()
# q = queue.LifoQueue()
if __name__ == '__main__':
a = Process(target=f, args=(q,))
# a.daemon = True
a.start()
a.join()
print(q.get())
# 得出结论。进程是无法使用queue.LifoQueue()的,但线程可以