0

我想每
尝试5 分钟调用一次函数

AutoFunction(){
    cout << "Auto Notice" << endl;
    Sleep(60000*5);
}

while(1){

    if(current->tm_hour == StartHour && current->tm_min == StartMinut && current->tm_sec == StartSec){
        CallStart();
    }

    AutoFunction();
    Sleep(1000);
}

while我想每 1 秒同时刷新一次call AutoFunction();每 5 分钟一次,但无需等待SleepAutoFunction

因为我必须每 1 秒刷新一次 while(1) 以检查启动另一个函数的时间

我想这样做

while(1){

    if(current->tm_hour == StartHour && current->tm_min == StartMinut && current->tm_sec == StartSec){
        CallStart();
    }

    Sleep(1000);
}
while(1){

    AutoFunction();
    Sleep(60000*5);
}

但我不认为他们会一起工作

谢谢你

4

1 回答 1

1

对于我们这些不熟悉线程和 Boost 库的人来说,这可以通过一个 while 循环来完成:

void AutoFunction(){
    cout << "Auto Notice" << endl;
}

//desired number of seconds between calls to AutoFunction
int time_between_AutoFunction_calls = 5*60;

int time_of_last_AutoFunction_call = curTime() - time_between_AutoFunction_calls;

while(1){
    if (should_call_CallStart){
        CallStart();
    }

    //has enough time elapsed that we should call AutoFunction?
    if (curTime() - time_of_last_AutoFunction_call >= time_between_AutoFunction_calls){
        time_of_last_AutoFunction_call = curTime();
        AutoFunction();
    }
    Sleep(1000);
}

在这段代码中,curTime是我编写的一个函数,它以 int 形式返回 Unix Timestamp。从您选择的时间库中替换任何合适的内容。

于 2012-11-26T21:04:12.213 回答