error: ‘class boost::asio::io_context::strand’ has no member named ‘get_io_service’
时间: 2023-08-19 19:04:19 浏览: 254
st_asio_wrapper文档
这个错误是因为在Boost 1.66版本中,`get_io_service()`方法已经被`get_executor()`方法所替代。所以,你需要将你的代码中所有使用`get_io_service()`方法的地方替换成`get_executor().context()`或者`get_executor()`。这样,你的代码就可以编译通过了。
阅读全文