gpt4 book ai didi

C++ 后台更新

转载 作者:行者123 更新时间:2023-11-28 00:45:16 25 4
gpt4 key购买 nike

后台调用update函数的方法?我需要每 5 秒收集一次更新。

在 C# 中,我创建了定时器设置开始停止和委托(delegate),它工作。

在 C++ 中有任何方法吗?

最佳答案

C++11:

#include <thread>

void update() {
for (;;) {
do_update();
this_thread::sleep_for(std::chrono::seconds(5));
}
}

int main() {
std::thread thr(update);
thr.detach();
// do whatever the program needs to do
return 0;
}

关于C++ 后台更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16510822/

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