抄袭了一个C++ 简单TaskTreadPool

第一个

#include <iostream>

#include <queue>

#include <future>

#include <thread>

#include <functional>

#include <queue>

class ThreadPool {

public:

    ThreadPool(int num_threads) {

        for (int i = 0; i < num_threads; ++i) {

            threads_.emplace_back([this]() {

                while (true) {

                    std::unique_lock lockor(mutex_);

                    condition_.wait(lockor, [this]() {return !tasks_.empty();});

                    auto task = std::move(tasks_.front());

                    tasks_.pop();

                    lockor.unlock();

                    task();

                }

            });

        }

    }

    template<typename F, typename... Args>

    auto submit(F&& f, Args&&... args) -> std::future<decltype(f(args...))> {

        auto task = std::make_shared<std::packaged_task<decltype(f(args...))()>>(

                                                                                 std::bind(std::forward<F>(f), std::forward<Args>(args)...)

                                                                                 );

        std::future<decltype(f(args...))> res = task->get_future();

                std::unique_lock lock(mutex_);

                tasks_.emplace([task]() {(*task)();});

                lock.unlock();

                condition_.notify_one();

                return res;

    }

    

    ~ThreadPool() {

            for (int i = 0; i < threads_.size(); ++i) {

                submit([]() {});

            }

            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_;

};

int main() {

    ThreadPool pool(4);

        auto future1 = pool.submit([]() { std::cout << "Task 1." << std::endl; return 1; });

        auto future2 = pool.submit([]() { std::cout << "Task 2." << std::endl; return 2; });

        std::cout << "Result 1: " << future1.get() << std::endl;

        std::cout << "Result 2: " << future2.get() << std::endl;

        // Submit more tasks before the previous ones finish:

        for (int i = 0; i < 8; ++i) {

            pool.submit([i]() { std::cout << "Task " << i+1 << "." << std::endl;

                                 std::this_thread::sleep_for(std::chrono::milliseconds(1000)); });

        }

    return  0;

}

第二个

#include <thread>

#include <mutex>

#include <condition_variable>

#include <functional>

#include <queue>

#include <vector>

class ThreadPool {

public:

    ThreadPool(int num_threads_) : stop_(false) {

        for (int i=0; i < num_threads_; ++i) {

            threads_.emplace_back([this](){

                while (true) {

                    std::unique_lock<std::mutex> lock(mutex_);

                    cv_.wait(lock, [this] {return stop_ || !tasks_.empty();});

                    if (stop_ || tasks_.empty()) {

                        return ;

                    }

                    std::function<void ()> task(std::move(tasks_.front()));

                    tasks_.pop();

                    lock.unlock();

                    task();

                }

            });

        }

    }

    ~ThreadPool() {

        {

            std::unique_lock<std::mutex> lock(mutex_);

            stop_ = true;

        }

        cv_.notify_all();

        for (auto& thread : threads_) {

            thread.join();

        }

    }

    

    template<typename  F, typename... Args>

    void enqueue(F&& f, Args&&... args) {

        std::function<void ()> task(std::bind(std::forward<F>(f), std::forward<Args>(args)...));

        

        std::unique_lock<std::mutex> lock(mutex_);

        tasks_.emplace(std::move(task));

        cv_.notify_one();

    }

private:

    std::vector<std::thread> threads_;

    std::queue<std::function<void()>> tasks_;

    std::mutex mutex_;

    std::condition_variable cv_;

    bool stop_;

};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值