中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++ wait_for如何實現

c++
小樊
82
2024-11-24 11:57:50
欄目: 編程語言

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

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

int main() {
    // 創建一個異步任務
    std::packaged_task<int()> task([](){
        std::this_thread::sleep_for(std::chrono::seconds(2)); // 模擬耗時操作
        return 42; // 返回結果
    });

    // 獲取異步任務的 future 對象
    std::future<int> result = task.get_future();

    // 在一個新線程中運行異步任務
    std::thread task_thread(std::move(task));
    task_thread.detach();

    // 等待異步任務完成,最多等待 3 秒
    if (result.wait_for(std::chrono::seconds(3)) == std::future_status::ready) {
        // 獲取異步任務的結果
        int value = result.get();
        std::cout << "異步任務返回結果: " << value << std::endl;
    } else {
        std::cout << "異步任務未完成,已超時" << std::endl;
    }

    return 0;
}

在這個示例中,我們創建了一個異步任務,該任務會休眠 2 秒并返回結果。我們使用 get_future() 獲取異步任務的 future 對象,然后在一個新線程中運行該任務。接下來,我們使用 wait_for() 函數等待異步任務完成,最多等待 3 秒。如果異步任務在 3 秒內完成,我們將獲取并輸出其結果;否則,我們將輸出任務未完成的消息。

0
贡嘎县| 定远县| 剑阁县| 依兰县| 平顶山市| 安陆市| 延边| 宣汉县| 维西| 邮箱| 泾阳县| 若尔盖县| 大石桥市| 新乡县| 梅州市| 六盘水市| 克山县| 彭阳县| 顺平县| 武乡县| 那曲县| 海伦市| 金寨县| 涟源市| 大埔县| 甘肃省| 五寨县| 苍南县| 石泉县| 沈丘县| 萍乡市| 颍上县| 德江县| 普兰店市| 钟山县| 寿宁县| 东港市| 区。| 宝坻区| 垫江县| 新平|