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

溫馨提示×

c++線程池使用的方法是什么

c++
小億
95
2024-01-19 00:21:32
欄目: 編程語言

在C++中使用線程池通常需要以下步驟:

  1. 包含 <thread> 頭文件,用于創建線程。
  2. 創建一個線程池類,該類包含一個線程池容器和一個任務隊列。
  3. 定義一個任務類,該類包含一個函數指針和函數參數。
  4. 在線程池類中定義一個添加任務的方法,該方法將任務添加到任務隊列中。
  5. 在線程池類中定義一個執行任務的方法,該方法從任務隊列中取出任務并執行。
  6. 在主函數中創建線程池對象,并調用添加任務的方法添加任務。
  7. 啟動線程池對象的執行任務方法,線程池會自動執行添加的任務。

以下是一個簡單的C++線程池示例代碼:

#include <iostream>
#include <vector>
#include <thread>
#include <queue>
#include <functional>

class ThreadPool {
public:
    ThreadPool(int numThreads) : stop(false) {
        for (int i = 0; i < numThreads; ++i) {
            threads.emplace_back(std::bind(&ThreadPool::worker, this));
        }
    }

    template <class F, class... Args>
    void addTask(F&& f, Args&&... args) {
        tasks.emplace(std::bind(std::forward<F>(f), std::forward<Args>(args)...));
    }

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

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

    void worker() {
        while (true) {
            std::function<void()> task;
            {
                std::unique_lock<std::mutex> lock(mutex);
                condition.wait(lock, [this]() { return stop || !tasks.empty(); });
                if (stop && tasks.empty()) {
                    return;
                }
                task = std::move(tasks.front());
                tasks.pop();
            }
            task();
        }
    }
};

void printHello() {
    std::cout << "Hello" << std::endl;
}

int main() {
    ThreadPool pool(4);

    for (int i = 0; i < 8; ++i) {
        pool.addTask(printHello);
    }

    return 0;
}

在上述示例中,線程池類 ThreadPool 包含了一個線程池容器 threads 和一個任務隊列 tasks。通過調用 addTask 方法,可以將任務添加到任務隊列中。在 worker 方法中,線程池線程會不斷從任務隊列中取出任務并執行。在主函數中,創建了一個具有4個線程的線程池對象,并添加了8個打印Hello的任務。

0
盐源县| 花垣县| 曲沃县| 襄汾县| 平江县| 宜章县| 广德县| 西林县| 永丰县| 张家港市| 团风县| 枣强县| 健康| 天门市| 江华| 巧家县| 兰溪市| 九寨沟县| 金湖县| 景洪市| 嘉善县| 博白县| 荔波县| 汉沽区| 新民市| 卫辉市| 商水县| 沙坪坝区| 苗栗市| 定远县| 齐河县| 密山市| 肥西县| 万全县| 太谷县| 林周县| 桓台县| 定陶县| 探索| 高台县| 台前县|