Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
定义两个shared_mutex,分别管理users和has_login,利用lock_guard思想,读数据时,shared_lock;写数据时,unique_lock
面对线程过多的问题,作业完成后,阅读了#4 的作业,学习了这种线程池的实现方式。
但是有些疑问,当ThreadPool调用解构函数时,stop参数变为true,线程跳出循环,好像没有保证能将MTQueue中保存的任务全部执行完成