yuesong-feng / 30dayMakeCppServer

30天自制C++服务器,包含教程和源代码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

day13 线程池的疑惑

djh-sudo opened this issue · comments

commented

workers_.emplace_back([task]() { (*task)(); });

这里为什么不是把任务添加至队列里,而是添加到了线程数组中?(和day12有些出入)

写错了吧可能