所以,我正在按照教程,尝试设置一个基本计时器......
void print(const boost::system::error_code &e)
{
std::cout <<"hello world"<< std::endl;
}
int main()
{
boost::asio::io_service io;
boost::asio::deadline_timer timer(io, boost::posix_time::seconds(5));
timer.async_wait(print);
io.run();
}
构建良好,但在运行时;
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::system::system_error> >'
what(): thread: The attempted operation is not supported for the type of object referenced
Win7,GCC,code :: blocks
EDIT;在具有相同设置的另一台机器上尝试了它 - 结果相同。
再次编辑;我应该从boost 1_47切换到最新的吗?
答案 0 :(得分:0)
你的代码适用于我使用MinGw 4.8和boost 1.55。但是,请尝试将呼叫更改为timer.async_wait
:
#include <boost/bind.hpp>
timer.async_wait(boost::bind(&print, boost::asio::placeholders::error));
答案 1 :(得分:0)
我切换了1.56的加速,它起作用了。