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

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux環境中C++線程池實現方法

發布時間:2024-11-15 17:06:06 來源:億速云 閱讀:80 作者:小樊 欄目:編程語言

在Linux環境中,可以使用C++11標準庫中的<thread><future>頭文件來實現線程池

#include <iostream>
#include <vector>
#include <queue>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <functional>
#include <future>

class ThreadPool {
public:
    ThreadPool(size_t num_threads) : stop(false) {
        for (size_t i = 0; i < num_threads; ++i) {
            workers.emplace_back([this] {
                for (;;) {
                    std::function<void()> task;
                    {
                        std::unique_lock<std::mutex> lock(this->queue_mutex);
                        this->condition.wait(lock, [this] { return this->stop || !this->tasks.empty(); });
                        if (this->stop && this->tasks.empty()) {
                            return;
                        }
                        task = std::move(this->tasks.front());
                        this->tasks.pop();
                    }
                    task();
                }
            });
        }
    }

    ~ThreadPool() {
        {
            std::unique_lock<std::mutex> lock(queue_mutex);
            stop = true;
        }
        condition.notify_all();
        for (std::thread &worker : workers) {
            worker.join();
        }
    }

    template <class F, class... Args>
    auto enqueue(F&& f, Args&&... args) -> std::future<typename std::result_of<F(Args...)>::type> {
        using return_type = typename std::result_of<F(Args...)>::type;
        auto task = std::make_shared<std::packaged_task<return_type()>>(std::bind(std::forward<F>(f), std::forward<Args>(args)...));
        std::future<return_type> res = task->get_future();
        {
            std::unique_lock<std::mutex> lock(queue_mutex);
            if (stop) {
                throw std::runtime_error("enqueue on stopped ThreadPool");
            }
            tasks.emplace([task]() { (*task)(); });
        }
        condition.notify_one();
        return res;
    }

private:
    std::vector<std::thread> workers;
    std::queue<std::function<void()>> tasks;
    std::mutex queue_mutex;
    std::condition_variable condition;
    bool stop;
};

int main() {
    ThreadPool pool(4);

    auto result1 = pool.enqueue([](int a, int b) { return a + b; }, 5, 3);
    std::cout << "Result 1: " << result1.get() << std::endl;

    auto result2 = pool.enqueue([](int a, int b) { return a * b; }, 4, 6);
    std::cout << "Result 2: " << result2.get() << std::endl;

    return 0;
}

這個實現中,我們創建了一個ThreadPool類,它接受一個參數num_threads,表示要創建的線程數量。在構造函數中,我們為每個線程分配一個任務,這些任務是一個std::function對象,它們包裝了要在線程中執行的可調用對象。我們還使用了一個互斥鎖和一個條件變量來確保線程安全地訪問任務隊列。

enqueue函數是一個模板函數,它接受一個可調用對象及其參數,并返回一個std::future對象,該對象將在任務完成后持有結果。當調用enqueue時,我們將任務添加到任務隊列中,并通知一個等待的線程來執行該任務。

main函數中,我們創建了一個包含4個線程的線程池,并使用enqueue函數將兩個任務添加到線程池中。然后我們等待這些任務完成,并輸出結果。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

新田县| 泗阳县| 正定县| 岱山县| 天门市| 陈巴尔虎旗| 巧家县| 崇明县| 青川县| 三都| 清远市| 二手房| 怀集县| 刚察县| 龙南县| 清流县| 革吉县| 甘肃省| 襄垣县| 铁力市| 图们市| 英山县| 汕头市| 梅州市| 闸北区| 漾濞| 安塞县| 湄潭县| 阳新县| 依兰县| 财经| 阳西县| 综艺| 信阳市| 赤峰市| 镇坪县| 朝阳县| 湖北省| 申扎县| 曲阜市| 金塔县|