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

溫馨提示×

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
兴城市| 贵德县| 文化| 玉门市| 浦北县| 闻喜县| 宜川县| 淳安县| 天全县| 珲春市| 康乐县| 包头市| 胶州市| 凭祥市| 丽江市| 泰来县| 吴江市| 正蓝旗| 桦南县| 广宗县| 阿荣旗| 寻甸| 宁蒗| 玉林市| 修水县| 定南县| 河津市| 新闻| 工布江达县| 哈巴河县| 双桥区| 广丰县| 嘉义市| 青岛市| 申扎县| 汉川市| 海原县| 光泽县| 邻水| 大同县| 茶陵县|