1 Star 0 Fork 1

行走的皮卡丘/线程池

forked from LEE377/线程池 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 748 Bytes
一键复制 编辑 原始数据 按行查看 历史
LEE377 提交于 2023-07-13 06:29 . 线程池文件
#include <iostream>
#include "ThreadPool.h"
#include <condition_variable>
#include <mutex>
using namespace std;
bool func1() {
cout << "func1 is working!\n";
return true;
}
bool func2() {
cout << "func2 is working!\n";
return true;
}
bool func3() {
cout << "func3 is working!\n";
return true;
}
bool func4() {
cout << "func4 is working!\n";
return true;
}
bool func5() {
cout << "func5 is working!\n";
return true;
}
int main() {
ThreadPool::Instance().AddTask(func1);
ThreadPool::Instance().AddTask(func2);
ThreadPool::Instance().AddTask(func3);
ThreadPool::Instance().AddTask(func4);
ThreadPool::Instance().AddTask(func5);
ThreadPool::Instance().ThreadPoolExit();
while (1) ;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wsy-lyy/thread-pool.git
git@gitee.com:wsy-lyy/thread-pool.git
wsy-lyy
thread-pool
线程池
master

搜索帮助