亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c++ wait_for有哪些技巧

c++
小樊
81
2024-11-24 11:59:58
欄目: 編程語言

wait_for 是 C++11 標準庫 <future> 中的一個函數,用于等待一個異步操作完成

  1. 使用 std::chrono 進行時間控制:wait_for 接受一個 std::chrono::duration 參數,允許你指定等待的最長時間。例如,如果你想要等待一個異步操作在 5 秒內完成,可以使用 std::chrono::seconds(5) 作為參數。

    #include <iostream>
    #include <chrono>
    #include <future>
    
    int main() {
        std::promise<int> prom;
        std::future<int> 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 <iostream>
    #include <chrono>
    #include <future>
    
    int main() {
        std::promise<int> prom;
        std::future<int> 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 <iostream>
    #include <chrono>
    #include <future>
    
    int main() {
        std::promise<int> prom;
        std::future<int> 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 <iostream>
    #include <future>
    
    int main() {
        std::promise<int> prom;
        std::future<int> 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;
    }
    

0
大连市| 闵行区| 昌黎县| 灵武市| 宜宾市| 祁连县| 陆丰市| 镇巴县| 旌德县| 宝兴县| 延川县| 武清区| 浦东新区| 保康县| 临洮县| 宁都县| 兴海县| 长春市| 突泉县| 明光市| 盐城市| 浦县| 广东省| 华坪县| 遂平县| 河源市| 信丰县| 依兰县| 临洮县| 永安市| 河北省| 东兰县| 阿拉善左旗| 嘉禾县| 曲阳县| 安化县| 繁峙县| 玉溪市| 天气| 西青区| 绥芬河市|