基于 C++ 11 实现线程池
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819
  1. #include <iostream>
  2. #include <future>
  3. #include "ThreadPool.h"
  4. using namespace std;
  5. int sum1(int a, int b) {
  6. return a + b;
  7. }
  8. int main() {
  9. ThreadPool pool;
  10. pool.start();
  11. future<int> res = pool.submitTask(sum1, 10, 20);
  12. cout << res.get() << endl;
  13. return 0;
  14. }