在 2 个 C 程序之间传输数据的最简单方法?

发布于 2024-08-24 21:18:28 字数 102 浏览 3 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弃爱 2024-08-31 21:18:28

进程间通信本质上是依赖于平台的; “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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文