30dayMakeCppServer icon indicating copy to clipboard operation
30dayMakeCppServer copied to clipboard

day13的笔误

Open Mospic opened this issue 1 year ago • 1 comments

day13里的ThreadPool.h中58行的 tasks_.emplace_back([task]() { (*task)(); });应修改为 tasks_.emplace([task]() { (*task)(); });,否则报错

Mospic avatar Jan 19 '24 11:01 Mospic

作者将vector和queue的操作搞混了,不过这个线程池的代码我在其他地方看到过,也是一样错误。

Hundaozi avatar Mar 11 '24 12:03 Hundaozi