gpt4 book ai didi

c++ - boost deadline_timer 问题

转载 作者:太空狗 更新时间:2023-10-29 20:45:04 27 4
gpt4 key购买 nike

下面是一个用计时器包装线程的测试类的实现。奇怪的是,如果将截止日期设置为 500 毫秒,它会起作用,但如果我将它设置为 1000 毫秒,它就不会起作用。我做错了什么?

#include "TestTimer.hpp"
#include "../SysMLmodel/Package1/Package1.hpp"

TestTimer::TestTimer(){
thread = boost::thread(boost::bind(&TestTimer::classifierBehavior,this));
timer = new boost::asio::deadline_timer(service,boost::posix_time::milliseconds(1000));
timer->async_wait(boost::bind(&TestTimer::timerBehavior, this));


};

TestTimer::~TestTimer(){
}

void TestTimer::classifierBehavior(){
service.run();
};


void TestTimer::timerBehavior(){
std::cout<<"timerBehavior\r";
timer->expires_at(timer->expires_at() + boost::posix_time::milliseconds(1000));
timer->async_wait(boost::bind(&TestTimer::timerBehavior,this));
}

更新 1我注意到程序卡住了(或者至少标准输出在控制台中持续了很多秒,大约 30 秒)然后许多“timerBehavior”字符串一起打印出来,就好像它们已经在某处排队一样。

最佳答案

您的程序可能有几个问题。从您所展示的内容来看,很难说程序是否在计时器有机会触发之前停止。并且,如果您想在换行符后刷新输出,则不刷新输出,请使用 std::endl。第三,如果你的线程要运行 io_service.run() 函数,可能是线程发现一个空的 io 队列,run() 将立即返回。为了防止这种情况,有一个工作类可以防止这种情况发生。这是我的示例,来自您的代码,可能会按预期工作:

#include <boost/asio.hpp>
#include <boost/thread.hpp>
#include <iostream>

class TestTimer
{
public:
TestTimer()
: service()
, work( service )
, thread( boost::bind( &TestTimer::classifierBehavior,this ) )
, timer( service,boost::posix_time::milliseconds( 1000 ) )
{
timer.async_wait( boost::bind( &TestTimer::timerBehavior, this ) );
}

~TestTimer()
{
thread.join();
}
private:
void classifierBehavior()
{
service.run();
}


void timerBehavior() {
std::cout << "timerBehavior" << std::endl;
timer.expires_at( timer.expires_at() + boost::posix_time::milliseconds( 1000 ) );
timer.async_wait( boost::bind( &TestTimer::timerBehavior,this ) );
}

boost::asio::io_service service;
boost::asio::io_service::work work;
boost::thread thread;
boost::asio::deadline_timer timer;
};

int main()
{
TestTimer test;
}

关于c++ - boost deadline_timer 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11700566/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com