前言:
- 什么是多线程?比如在做一些下载的程序时,同时开启5个下载任务,对应的其实就是多线程。在一些多线程的程序中,响应请求的个数(即线程)的个数过多的话就会造成系统资源损耗过多而宕机,一般最多线程是有上限的,而且每次创建线程和销毁线程都会大量损耗资源和时间。所以解决办法之一就是使用线程池控制线程个数,复用创建过的线程。
- 线程池可以减少创建和切换线程的额外开销,利用已经存在的线程多次循环执行多个任务从而提高系统的处理能力。
示例:
#include <iostream> #include <boost/bind.hpp> #include <boost/threadpool.hpp> using namespace std; using namespace boost::threadpool; // 下面是3个不带参数的线程执行函数和一个带参数的线程执行函数 void first_task() { for (int i = 0; i < 30; ++i) cout << "first" << i << endl; } void second_task() { for (int i = 0; i < 30; ++i) cout << "second" << i << endl; } void third_task() { for (int i = 0; i < 30; ++i) cout << "third" << i << endl; } void task_with_parameter(int value, string str) { printf("task_with_parameter with int=(%d).\n" ,value); printf("task_with_parameter with string=(%s).\n" ,str.c_str()); } void execute_with_threadpool() { // 创建一个线程池,初始化为2个线程 pool tp(2); // 调用4个线程函数 tp.schedule(&first_task); // 不带参数的执行函数 tp.schedule(&second_task); tp.schedule(&third_task); tp.schedule(boost::bind(task_with_parameter, 8, "hello")); // 带两个参数的执行函数 // 这儿函数会等到4个线程全部执行结束才会退出 } int main(int argc, const char* argv[]) { execute_with_threadpool(); }
时间: 2024-10-12 02:48:05