在 2 个 C 程序之间传输数据的最简单方法?
在 Windows 上的 ANSI C 中,在本地运行的两个程序之间传输数据而不需要从文件中写入/读取的最佳/最简单方法是什么?数据将是基本文本,只有一个程序将发送,另一个程序将接收。谢谢。
In ANSI C on Windows what is the best/easiest way to transfer data between two programs running locally without needing to write/read from a file? Data will be basic text and only one program will be sending and the other receiving. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
进程间通信本质上是依赖于平台的; “ANSI C”对此没有任何说明,但对于 Windows,您应该从这里开始:
http://msdn.microsoft.com/en-us/library/aa365574(VS.85).aspx
很大程度上取决于您所讨论的应用程序类型,数据量以及流程的紧密耦合程度。
Inter-process communication is inherently platform-dependent; "ANSI C" doesn't have anything to say about this, but you should start here for Windows:
http://msdn.microsoft.com/en-us/library/aa365574(VS.85).aspx
Much depends on the kinds of applications you're talking about, and the volume of data, and how tightly coupled the processes are.