diff --git a/ThreadPool.h b/ThreadPool.h index 6274133..8934595 100644 --- a/ThreadPool.h +++ b/ThreadPool.h @@ -254,7 +254,6 @@ private: std::atomic idleThreadSize_; // 记录空闲线程的数量 unsigned threadSizeThreshold_; // 线程数量上限阈值 - // 这里队列里不能存裸指针,避免用户传入一个临时对象,使用智能指针延长外部传进来对象的生命周期 using Task = std::function; std::queue taskQue_; // 任务队列 std::atomic taskSize_; // 任务队列任务数,用原子变量保证原子性