为什么没有关于管道的维基百科?
我正在阅读 C 编程指南,突然它开始谈论管道。谁能简单地告诉我什么是管道?
I am reading the C programing guide and all of a sudden it starts talking about pipes. Can someone simply tell me what a pipe is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它们是在不同进程中作为文件描述符出现的操作系统对象,允许一个进程的输出成为另一个进程的输入。请阅读此处。
They are OS objects appearing as file descriptors in different processes, allowing output of one to be the input of the other. Read here.
您需要阅读 Beej 的 IPC 指南,特别是管道部分。
另请参阅 http://beej.us/guide/ 上的其他指南。
You want to read Beej's IPC Guide, specifically the pipe section.
Also check the other guides at http://beej.us/guide/.
最有可能的是,这意味着类 Unix 操作系统上下文中的管道,请参阅 管道 ( Unix)(维基百科)。它是一系列流程,一个流程的输出是下一个流程的输入。
Most likely, this means a Pipeline as in the context of Unix-like operating systems, see Pipeline (Unix) in Wikpedia. It is a chain of processes with the output of one process being the input to the next one.