python使用Queue在多个子进程间交换数据 python使用Queue在多个子进程间交换数据的方法
work24 人气:0想了解python使用Queue在多个子进程间交换数据的方法的相关内容吗,work24在本文为您仔细讲解python使用Queue在多个子进程间交换数据的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:python,Queue,多个子进程,交换数据,下面大家一起来学习吧。
本文实例讲述了python使用Queue在多个子进程间交换数据的方法。分享给大家供大家参考。具体如下:
这里将Queue作为中间通道进行数据传递,Queue是线程和进程安全的
from multiprocessing import Process, Queue def f(q): q.put([42, None, 'hello']) if __name__ == '__main__': q = Queue() p = Process(target=f, args=(q,)) p.start() print q.get() # prints "[42, None, 'hello']" p.join()
希望本文所述对大家的Python程序设计有所帮助。
加载全部内容