C和C++线程池汇总
# 多线程
> C++ 11提供的线程类std::thread
>
> * thread
>
> * mutex
>
> * condition_variable
>
> * atomix
>
> * future
>
> 
## 构造函数
```cpp
//默认构造函数对象,不进行任何操作
more...








