2403C++,C++20协程通道

原文
通道是一个可用来连接协程,实现不同协程通信并发安全队列.

cpp 复制代码
@Test
fun `test know channel`() = runBlocking<Unit> {
    val channel = Channel<Int>()
    //生产者
    val producer = GlobalScope.launch {
        var i = 0
        while (true) {
            delay(1000)
            channel.send(++i)
            println("send $i")
        }
    }
    //消费者
    val consumer = GlobalScope.launch {
        while (true) {
            val element = channel.receive()
            println("receive $element")
        }
    }
    joinAll(producer, consumer)
}

该示例很简单,生产者协程和消费者协程通过通道通信.

C++20协程有通道吗?与gokotlin那样的通道.

答案是:有,就在yalantinglibscoro_io里面.

来看看C++20协程通道的用法:

cpp 复制代码
  auto executor = coro_io::get_global_block_executor()->get_asio_executor();
  asio::experimental::channel<void(std::error_code, int)> channel(executor, 1000);
  co_await coro_io::async_send(ch, 42);
  auto [ec, val] = co_await coro_io::async_receive<int>(channel);
  assert(val == 42);

创建了个容量为1000通道,后续就可通过该通道实现协程间通信了.

这就是C++20协程通道,用法和go,kotlin通道类似.

相关推荐
霁月风20 分钟前
设计模式——适配器模式
c++·适配器模式
jrrz082842 分钟前
LeetCode 热题100(七)【链表】(1)
数据结构·c++·算法·leetcode·链表
咖啡里的茶i1 小时前
Vehicle友元Date多态Sedan和Truck
c++
海绵波波1071 小时前
Webserver(4.9)本地套接字的通信
c++
@小博的博客1 小时前
C++初阶学习第十弹——深入讲解vector的迭代器失效
数据结构·c++·学习
爱吃喵的鲤鱼2 小时前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++
7年老菜鸡3 小时前
策略模式(C++)三分钟读懂
c++·qt·策略模式
Ni-Guvara3 小时前
函数对象笔记
c++·算法
似霰3 小时前
安卓智能指针sp、wp、RefBase浅析
android·c++·binder
芊寻(嵌入式)3 小时前
C转C++学习笔记--基础知识摘录总结
开发语言·c++·笔记·学习