C++ 函数并发编程:创建并管理线程
简介
函数并发编程是一种利用多线程并行执行任务的技术。在 C++ 中,函数并发可以通过创建和管理线程来实现。
创建线程
要创建线程,可以使用 std::thread 类。std::thread 构造函数接受一个可调用对象的引用,该对象指定要执行的任务。例如:
#include <thread> void task() { // 执行的任务 } int main() { // 创建线程 std::thread t(task); return 0; }
管理线程
一旦创建线程,就可以通过以下方法对其进行管理:
- join():等待线程完成。
- detach():从线程中分离线程对象,以便线程可以独立执行。
- get_id():获取线程的 ID。
实战案例
下面是一个实战案例,演示如何使用 C++ 函数并发编程计算斐波那契数列:
#include <cstdlib> #include <iostream> #include <thread> #include <vector> std::vector<int> fibs; void calc_fib(int n) { int a = 0, b = 1; for (int i = 0; i < n; i++) { int next = a + b; fibs.push_back(next); a = b; b = next; } } int main() { int num_threads = 4; int num_fibs_per_thread = 10000000; // 创建线程池 std::vector<std::thread> threads; for (int i = 0; i < num_threads; i++) { threads.emplace_back(std::thread(calc_fib, num_fibs_per_thread)); } // 等待所有线程完成 for (auto& thread : threads) { thread.join(); } // 输出结果 for (auto fib : fibs) { std::cout << fib << " "; } return 0; }
以上就是C++ 函数并发编程:创建并管理线程的详细内容,更多请关注知识资源分享宝库其它相关文章!
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。