C++ Thread Pool(C++ 线程池)
问题描述
在生产代码中使用 C++ 的线程池的好的开源实现是什么(类似于 boost)?
What is a good open source implementation of a thread pool for C++ to use in production code (something like boost)?
请提供您自己的示例代码或示例代码用法的链接.
Please provide either your own example code or a link to example code usage.
推荐答案
我认为它仍然不被 Boost 接受,但是一个很好的起点:线程池.一些用法示例,来自网站:
I think it is still not accepted into Boost, but a good staring point: threadpool. Some example of usage, from the web site:
#include "threadpool.hpp"
using namespace boost::threadpool;
// Some example tasks
void first_task()
{
...
}
void second_task()
{
...
}
void third_task()
{
...
}
void execute_with_threadpool()
{
// Create a thread pool.
pool tp(2);
// Add some tasks to the pool.
tp.schedule(&first_task);
tp.schedule(&second_task);
tp.schedule(&third_task);
// Leave this function and wait until all tasks are finished.
}
池的参数2"表示线程数.在这种情况下,tp
的销毁等待所有线程完成.
The argument "2" to the pool indicates the number of threads. In this case, the destruction of tp
waits for all threads to finish.
这篇关于C++ 线程池的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 线程池
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01