如何在 C++ 中使用协程来实现并发编程
协程是一种轻量级的并发原语,允许程序员执行并行任务而无需创建单独的线程。这对于高 I/O 密集型应用程序非常有用,因为协程在切换任务时消耗的开销比线程要低得多。
C++ 中的协程
协程在 C++ 20 中被引入为 std::coroutine 框架。Coroutine 是一种生成器函数,它可以通过 co_yield
表达式挂起执行并返回一个值。与常规生成器不同,协程可以多次挂起和恢复执行。
// 一个协程示例 std::coroutine<int> my_coroutine() { int value = 0; while (true) { value++; co_yield value; // 挂起执行并返回 value } }
协程的实战案例
协程在以下场景中非常有用:
示例:使用协程进行非阻塞 I/O
以下示例演示如何使用协程进行非阻塞网络请求:
#include <iostream> #include <future> // 一个协程来发送 HTTP 请求 std::coroutine<std::string> get_url(const std::string& url) { // 创建一个 HTTP 客户端 auto client = std::make_unique<cpprestsdk::http_client>(url); // 向服务器发送 GET 请求 auto response = co_await client->request(cpprestsdk::methods::GET); // 返回响应体 co_return response.extract_string().get(); } int main() { // 并发发送两个 HTTP 请求 auto f1 = std::async(std::launch::async, get_url("https://example.com/1")); auto f2 = std::async(std::launch::async, get_url("https://example.com/2")); // 获取请求结果 std::cout << f1.get() << std::endl; std::cout << f2.get() << std::endl; }
以上是如何在C++中使用协程来实现并发编程?的详细内容。更多信息请关注PHP中文网其他相关文章!