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

溫馨提示×

溫馨提示×

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

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

C++解壓庫線程模型

發布時間:2024-10-30 12:36:30 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

C++ 中有多種線程模型可供選擇,具體取決于您的需求和應用程序的復雜性。以下是一些常見的 C++ 線程模型:

  1. 單線程:這是最簡單的線程模型,只使用一個線程來執行任務。這種模型適用于簡單的應用程序,無需進行復雜的并發處理。
#include <iostream>
#include <thread>

void task() {
    std::cout << "Task executed in single thread" << std::endl;
}

int main() {
    std::thread t(task);
    t.join();
    return 0;
}
  1. 多線程:這種模型使用多個線程來執行任務,可以提高程序的執行效率。您可以使用 std::thread 類來創建和管理線程。
#include <iostream>
#include <thread>

void task(int id) {
    std::cout << "Task " << id << " executed in thread " << std::this_thread::get_id() << std::endl;
}

int main() {
    const int num_threads = 4;
    std::thread threads[num_threads];

    for (int i = 0; i < num_threads; ++i) {
        threads[i] = std::thread(task, i);
    }

    for (auto& t : threads) {
        t.join();
    }

    return 0;
}
  1. 線程池:線程池是一種管理線程的機制,它可以復用已創建的線程,從而減少線程創建和銷毀的開銷。C++ 中可以使用第三方庫(如 Boost.Asio)或自己實現一個簡單的線程池。
#include <iostream>
#include <vector>
#include <queue>
#include <thread>
#include <mutex>
#include <condition_variable>

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 (auto& worker : workers) {
            worker.join();
        }
    }

    template <class F, class... Args>
    void enqueue(F&& f, Args&&... args) {
        {
            std::unique_lock<std::mutex> lock(queue_mutex);
            tasks.emplace([f, args...] { f(args...); });
        }
        condition.notify_one();
    }

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

void task(int id) {
    std::cout << "Task " << id << " executed in thread " << std::this_thread::get_id() << std::endl;
}

int main() {
    ThreadPool pool(4);

    for (int i = 0; i < 8; ++i) {
        pool.enqueue(task, i);
    }

    return 0;
}
  1. 異步編程:C++11 引入了 std::asyncstd::future,可以簡化異步編程。std::async 可以用于啟動一個異步任務,并返回一個 std::future 對象,該對象可以在適當的時候獲取任務的結果。
#include <iostream>
#include <future>

int task(int id) {
    std::cout << "Task " << id << " executed in thread " << std::this_thread::get_id() << std::endl;
    return id * 2;
}

int main() {
    std::future<int> result = std::async(task, 42);

    std::cout << "Waiting for task result..." << std::endl;
    int res = result.get();
    std::cout << "Task result: " << res << std::endl;

    return 0;
}

這些線程模型可以根據您的應用程序需求進行選擇和組合。在實際應用中,您可能需要根據具體情況調整線程數量、任務分配策略等。

向AI問一下細節

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

c++
AI

固阳县| 呼和浩特市| 白朗县| 连江县| 黑水县| 柳州市| 静宁县| 阿合奇县| 黑龙江省| 贵阳市| 亳州市| 房山区| 偃师市| 尉犁县| 客服| 宜昌市| 青神县| 大名县| 彭泽县| 长岛县| 江油市| 靖边县| 长顺县| 巧家县| 琼海市| 潍坊市| 抚宁县| 志丹县| 四川省| 屯昌县| 栾川县| 富川| 竹山县| 阿坝| 南召县| 霍城县| 铜陵市| 双江| 逊克县| 砚山县| 井陉县|