91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何使用C++ co_await處理并發任務

c++
小樊
88
2024-09-10 19:09:30
欄目: 編程語言

在 C++ 中,co_await 是一個關鍵字,用于處理協程(coroutines)中的掛起點

首先,確保你的編譯器支持 C++20 標準。然后,創建一個簡單的異步任務,例如從網站下載數據。為此,我們將使用 std::futurestd::async。接下來,使用 co_await 等待這些任務完成。

以下是一個示例:

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

// 模擬從網站下載數據的函數
std::string download_data(int id) {
    std::this_thread::sleep_for(std::chrono::seconds(1)); // 模擬耗時操作
    return "Data from website " + std::to_string(id);
}

// 使用 std::async 創建異步任務
std::future<std::string> async_download_data(int id) {
    return std::async(std::launch::async, download_data, id);
}

// 使用 C++20 協程處理并發任務
std::string handle_tasks() {
    std::vector<std::future<std::string>> tasks;

    for (int i = 0; i < 5; ++i) {
        tasks.push_back(async_download_data(i));
    }

    std::string result;
    for (auto& task : tasks) {
        result += co_await task;
    }

    co_return result;
}

int main() {
    auto coro_handle = handle_tasks();
    std::cout << "Waiting for tasks to complete..."<< std::endl;
    std::cout << "Result: "<< coro_handle.get()<< std::endl;

    return 0;
}

在這個示例中,我們首先創建了一個名為 download_data 的函數,該函數模擬從網站下載數據。接著,我們創建了一個名為 async_download_data 的函數,該函數使用 std::async 創建異步任務。最后,我們創建了一個名為 handle_tasks 的協程函數,該函數使用 co_await 等待所有任務完成,并將結果拼接在一起。

請注意,要使用 C++20 協程,需要在編譯命令中添加 -std=c++20 -fcoroutines 參數。例如,對于 g++ 編譯器,可以使用以下命令:

g++ -std=c++20 -fcoroutines example.cpp -o example

這樣,你就可以使用 C++20 的 co_await 關鍵字處理并發任務了。

0
本溪市| 丘北县| 漯河市| 灵山县| 淮阳县| 万全县| 丹凤县| 凤阳县| 武邑县| 拜城县| 东乌珠穆沁旗| 榆社县| 永定县| 弥勒县| 景宁| 乌海市| 霍林郭勒市| 嵊泗县| 龙门县| 张家界市| 昌江| 甘谷县| 左云县| 休宁县| 丰镇市| 明溪县| 涞水县| 弥勒县| 敦化市| 靖安县| 元谋县| 福鼎市| 潜江市| 武平县| 亚东县| 临桂县| 鸡东县| 襄樊市| 石屏县| 丽江市| 罗源县|