博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 中的pipe
阅读量:4879 次
发布时间:2019-06-11

本文共 555 字,大约阅读时间需要 1 分钟。

1 from multiprocessing import Process,Queue,Pipe 2 import os 3 def f(q): 4 #    q.send([42,None,'hello']) 5     print('This is child_conn ....' % q.recv()) 6 #    q.close() 7     print 'Os getpid is %s...' % os.getpid() 8  9 if __name__=='__main__':10     parent_conn,child_conn=Pipe()11     parent_conn.send(['good',None,100])12     p=Process(target=f,args=(child_conn,))13     p.start()14     print(parent_conn.recv())15     parent_conn.close()16     p.join()

?f(q)内的作为child_conn的q为什么接收不到parent_conn的推送

转载于:https://www.cnblogs.com/liunnis/p/4612269.html

你可能感兴趣的文章
MySQL DATE_SUB() 函数
查看>>
在SSH框架下按条件分页查询
查看>>
jquery选择器
查看>>
【javascript学习——《javascript高级程序设计》笔记】DOM操作
查看>>
高效的SQL语句翻页代码
查看>>
NPAPI插件开发详细记录:用VS2010开发NPAPI插件步骤
查看>>
linux下Makefile全解(二)
查看>>
XMLHTTP.readyState的五种状态
查看>>
百度外卖 前端面试题
查看>>
record for json formate site
查看>>
查询树形的根节点
查看>>
HDU 1272 小希的迷宫
查看>>
hdu 5412 CRB and Queries(整体二分)
查看>>
CentOS如何安装linux桌面?
查看>>
Speech and Booth Demo in Maker Faire Shenzhen 2018
查看>>
bzoj 1670: [Usaco2006 Oct]Building the Moat护城河的挖掘
查看>>
bzoj 2281: [Sdoi2011]黑白棋
查看>>
bzoj 4475: [Jsoi2015]子集选取
查看>>
团队开发7
查看>>
java之静态代理与动态代理
查看>>