码迷,mamicode.com
首页 > 系统相关 > 详细

进程间通讯-2(pipe)

时间:2017-08-14 16:31:48      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:结果   send   nbsp   tar   进程间通信   art   rom   main   blog   

通过pipe 管道的方式也可以实现进程间通信。

父进程和子进程之间可以实现相互通信。

from multiprocessing import Process, Pipe

def f(conn):
    conn.send([42, None, ‘hello from child‘])
    conn.send([42, None, ‘hello from child2‘])
    print(‘from parent:‘,conn.recv())
    conn.close()

if __name__ == ‘__main__‘:
    parent_conn, child_conn = Pipe()
    p = Process(target=f, args=(child_conn,))
    p.start()
    print(parent_conn.recv())  # prints "[42, None, ‘hello‘]"
    print(parent_conn.recv())
    parent_conn.send(‘你还好么?‘)
    p.join()

 运行结果:

[42, None, ‘hello from child‘]
[42, None, ‘hello from child2‘]
from parent 你还好么?

 

进程间通讯-2(pipe)

标签:结果   send   nbsp   tar   进程间通信   art   rom   main   blog   

原文地址:http://www.cnblogs.com/momo8238/p/7358015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!