gpt4 book ai didi

c++ - 延迟函数调用

转载 作者:太空宇宙 更新时间:2023-11-04 14:56:33 25 4
gpt4 key购买 nike

使用 C++11、lambda 和异步执行延迟(因此也是异步)函数调用的最优雅方式是什么?建议命名:delayed_async。询问的原因是我希望在给定时间(在本例中为一秒)后关闭 GUI 警报灯,当然不会阻塞主线程(wxWidgets 主循环)。我为此使用了 wxWidgets 的 wxTimer,我发现在这种情况下使用 wxTimer 相当麻烦。所以这让我很好奇,如果我改为使用 C++11 的 async 1 可以实现多少方便? , 2 。我知道在使用 async 时,我需要保护与互斥锁相关的资源。

最佳答案

你的意思是这样的?

#include <iostream>
#include <chrono>
#include <thread>
#include <future>

int main()
{
// Use async to launch a function (lambda) in parallel
std::async(std::launch::async, [] () {
// Use sleep_for to wait specified time (or sleep_until).
std::this_thread::sleep_for( std::chrono::seconds{1});
// Do whatever you want.
std::cout << "Lights out!" << std::endl;
} );
std::this_thread::sleep_for( std::chrono::seconds{2});
std::cout << "Finished" << std::endl;
}

只需确保您没有在 lambda 中通过引用捕获变量。

关于c++ - 延迟函数调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10804683/

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