文件名称:mvThreadPool:易于使用的C ++线程池
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-16 15:16:32
cpp multithreading thread-pool C++
mvThreadPool (此库可免费获得许可) mvThreadPool是基于工作的易于使用的仅标头C ++线程池 用法 要使用此库,只需在项目中包含mvThreadPool.h 。 基本用法如下所示: int main () { // create threadpool auto threadpool = Marvel::mvThreadPool (); // submit function threadpool-> submit (&SomeFunction); // submit function with arguments threadpool-> submit ( std::bind (&SomeVarFunction, arg1, arg2, ...)); // submit a method threadpool-> submit
【文件预览】:
mvThreadPool-master
----.gitignore(9B)
----mvThreadPool.h(7KB)
----LICENSE(1KB)
----README.md(873B)
----main.cpp(1KB)
----CMakeLists.txt(259B)