Boost asio 异步从 stdin 读取

Boost asio read from stdin asynchronously

我想使用 boost asio 函数 async_read() 从标准输入(就 c++ 而言,std::cin)进行读取。由于实例化错误,以下代码无法编译并给我一条很长的错误消息。有人可以回答,我如何使用此函数异步读取标准输入?

char buf[64];

boost::asio::async_read(std::cin, boost::asio::buffer(buf),
                          [](const boost::system::error_code &ec, std::size_t size){});

编辑:我知道这里已经提出了一个类似的问题 Using boost::asio::async_read with stdin?,但是我不清楚标记的答案与问题的关系如何

你必须使用posix::stream_descriptor

例如:

using namespace boost::asio;
io_context ioc;        
posix::stream_descriptor input_stream(ioc, STDIN_FILENO);
// assume that you already defined your read_handler ...
async_read(input_stream, buffer(buf), read_handler);
ioc.run();

请注意,您不应将上述代码与 std::cin

混合使用

有关详细信息,请参阅 here