legongju.com
我们一直在努力
2024-12-25 12:58 | 星期三

c++ wait_for有哪些技巧

wait_for 是 C++11 标准库 中的一个函数,用于等待一个异步操作完成

  1. 使用 std::chrono 进行时间控制:wait_for 接受一个 std::chrono::duration 参数,允许你指定等待的最长时间。例如,如果你想要等待一个异步操作在 5 秒内完成,可以使用 std::chrono::seconds(5) 作为参数。

    #include 
    #include 
    #include 
    
    int main() {
        std::promise prom;
        std::future fut = prom.get_future();
    
        std::thread([&]() {
            std::this_thread::sleep_for(std::chrono::seconds(3));
            prom.set_value(42);
        }).detach();
    
        if (fut.wait_for(std::chrono::seconds(5)) == std::future_status::ready) {
            std::cout << "Async operation completed within the timeout." << std::endl;
        } else {
            std::cout << "Async operation did not complete within the timeout." << std::endl;
        }
    
        return 0;
    }
    
  2. 使用 std::future::wait_until 等待特定时间点:wait_until 接受一个 std::chrono::time_point 参数,允许你指定等待到何时。例如,如果你想要等待一个异步操作在 5 秒后完成,可以使用 std::chrono::system_clock::now() + std::chrono::seconds(5) 作为参数。

    #include 
    #include 
    #include 
    
    int main() {
        std::promise prom;
        std::future fut = prom.get_future();
    
        std::thread([&]() {
            std::this_thread::sleep_for(std::chrono::seconds(3));
            prom.set_value(42);
        }).detach();
    
        if (fut.wait_until(std::chrono::system_clock::now() + std::chrono::seconds(5)) == std::future_status::ready) {
            std::cout << "Async operation completed after the specified time point." << std::endl;
        } else {
            std::cout << "Async operation did not complete after the specified time point." << std::endl;
        }
    
        return 0;
    }
    
  3. 结合 std::future::wait_forstd::future::wait_until:你可以同时使用这两个函数来更精确地控制等待时间。例如,你可以先使用 wait_for 等待一个较短的时间,然后使用 wait_until 等待一个特定的时间点。

    #include 
    #include 
    #include 
    
    int main() {
        std::promise prom;
        std::future fut = prom.get_future();
    
        std::thread([&]() {
            std::this_thread::sleep_for(std::chrono::seconds(3));
            prom.set_value(42);
        }).detach();
    
        if (fut.wait_for(std::chrono::seconds(2)) == std::future_status::ready) {
            std::cout << "Async operation completed within the first timeout." << std::endl;
        } else {
            std::cout << "Async operation did not complete within the first timeout." << std::endl;
            if (fut.wait_until(std::chrono::system_clock::now() + std::chrono::seconds(5)) == std::future_status::ready) {
                std::cout << "Async operation completed after the specified time point." << std::endl;
            } else {
                std::cout << "Async operation did not complete after the specified time point." << std::endl;
            }
        }
    
        return 0;
    }
    
  4. 使用 std::future::wait 的替代方案:如果你只需要检查异步操作是否已经完成,而不关心是否超时,可以使用 std::future::wait 代替 wait_forwait_until。但请注意,wait 会阻塞当前线程,直到异步操作完成。

    #include 
    #include 
    
    int main() {
        std::promise prom;
        std::future fut = prom.get_future();
    
        std::thread([&]() {
            std::this_thread::sleep_for(std::chrono::seconds(3));
            prom.set_value(42);
        }).detach();
    
        fut.wait(); // 阻塞当前线程,直到异步操作完成
        std::cout << "Async operation completed." << std::endl;
    
        return 0;
    }
    

未经允许不得转载 » 本文链接:https://www.legongju.com/article/58457.html

相关推荐

  • C++中内存泄漏的常见原因及解决方法是什么

    C++中内存泄漏的常见原因及解决方法是什么

    在C++中,内存泄漏是指程序在申请内存后,无法释放已申请的内存空间,一次内存泄漏危害可以忽略,但内存泄漏堆积后的危害是严重的。以下是一些常见的内存泄漏原因...

  • c# messagebox怎样简化调用过程

    c# messagebox怎样简化调用过程

    在C#中,要简化MessageBox的调用过程,您可以创建一个扩展方法。扩展方法允许您向现有类型添加新功能,而无需修改其原始定义。以下是一个简单的示例,展示了如何...

  • c# arraylist如何进行删除元素

    c# arraylist如何进行删除元素

    在C#中,要删除ArrayList中的元素,可以使用Remove()方法。这是一个例子:
    using System;
    using System.Collections.ArrayList; class Program
    {...

  • c# arraylist如何进行异常处理

    c# arraylist如何进行异常处理

    在C#中,使用ArrayList时,可能会遇到各种异常。为了确保程序的稳定性,我们需要对这些异常进行适当的处理。以下是一些建议: 使用try-catch语句块来捕获异常: ...

  • c++ wait_for怎样使用

    c++ wait_for怎样使用

    wait_for是C++标准库 中的一个函数,用于等待一个给定的时间间隔。它接受两个参数:一个表示等待时间的 std::chrono::duration 对象,以及一个表示是否应该继续等...

  • php version怎样修改

    php version怎样修改

    要修改PHP版本,您可以按照以下步骤操作: 确认您当前的PHP版本:
    打开命令行终端,输入以下命令:
    php -v 这将显示您当前安装的PHP版本。 下载新版本...

  • php version如何运用

    php version如何运用

    php version 是一个命令行指令,用于显示当前系统中安装的 PHP 版本信息。要运用这个指令,你需要在命令行界面(如 Windows 的命令提示符或 macOS/Linux 的终端)...

  • php version怎样掌握

    php version怎样掌握

    掌握PHP版本,需要了解其安装、管理、升级以及可能遇到的兼容性问题。以下是详细介绍:
    PHP版本掌握方法 安装和管理:使用phpbrew可以在个人目录中构建和安...