码迷,mamicode.com
首页 > 编程语言 > 详细

python 管道

时间:2019-01-29 13:53:30      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:col   div   main   port   art   audio   while   isp   target   

 

#- * -coding: utf - 8 - * -
from multiprocessing import Process, Pipe

def f(conn):
    conn.send([42, None, hello])
    while True:
        print(conn.recv())

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‘]"
    parent_conn.send(666)
    p.terminate()

输出

[42, None, hello]

 

python 管道

标签:col   div   main   port   art   audio   while   isp   target   

原文地址:https://www.cnblogs.com/sea-stream/p/10333514.html

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