C++ 簡易線程池實現

//threadpool.h #ifndef THREADPOOL_H #define THREADPOOL_H #include <pthread.h> #include <deque> #include <vector> class ThreadPool{ typedef void (*Task)(); public: ThreadPool(int num); //線程池啓動
相關文章
相關標籤/搜索