C++ 流输入过程



我想将文本输出从一个程序转换为 Gui 输出,第一个程序每微秒产生一行输出。如果我在 linux 中使用管道命令发送,第二个程序如何逐行接收并处理它?换句话说,我的主要功能C++这个参数是流和无限的。谢谢

Program1:

#include <iostream>
int main()
{
    std::cout << "Program1 says Hello world!" << std::endl; // output to standard out using std::cout
}

程序2:

#include <iostream>
#include <string>
int main()
{
    std::string line;
    while (std::getline(std::cin, line)) // Read from standard in line by line using std::cin and std::getline
    {
         std::cout << "Line received! Contents: " << line << std::endl;
    }
}

现在,如果您运行Program1并管道进入Program2,您应该得到:


$ ./Program1 | ./Program2 Line Recieved! Contents: Program1 says Hello world!

请注意,Program2将继续从标准输入读取,直到达到EOF(或发生某些错误)。

对于您的情况,Program1是生成输出的东西,Program2是使用输出的 GUI 程序。请注意,为了使程序是非阻塞的,您可能希望在单独的线程上从标准输入进行读取。

至于你"每微秒接收一次输入"的约束,那可能不现实......它将尽可能快地处理,但你不能依靠标准的输入/输出来达到那么快,特别是如果你发送了相当数量的数据。

相关内容

  • 没有找到相关文章

最新更新