1 Star 0 Fork 3

innovatorzhang/ThreadPool

forked from Rocky/ThreadPool 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
example.cpp 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rocky 提交于 2021-09-02 22:33 . demo补充自定义参数的task
#include <cstdio>
#include "threadpool/ThreadPool.hpp"
class MyTask : public Task {
public:
MyTask(int i, int start) : Task("MyTask" + std::to_string(i)), start_(start) {}
void Run()
{
for (int i = 0; i < 5; i++) {
printf("-- thread [%3d]: task_name=[%20s], out=%d\n", GetThreadId(), GetName().c_str(), start_ + i);
std::this_thread::sleep_for(std::chrono::seconds(1));
}
}
private:
int start_;
};
int main(int argc, char **argv) {
ThreadPool pool;
for (int i = 0; i < 50; i++) {
pool.AddTask(std::make_shared<MyTask>(i, i));
}
int i = 100;
while(i < 150) {
pool.AddTask(std::make_shared<MyTask>(i, i));
std::this_thread::sleep_for(std::chrono::seconds(1));
i++;
}
pool.Finish();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/innovatorzhang/thread-pool.git
git@gitee.com:innovatorzhang/thread-pool.git
innovatorzhang
thread-pool
ThreadPool
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385