协程能不能还STD::未来?(找不到此协程的承诺类型)

Can coroutine return std::future? (unable to find the promise type for this coroutine)(协程能不能还STD::未来?(找不到此协程的承诺类型))
本文介绍了协程能不能还STD::未来?(找不到此协程的承诺类型)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已尝试从CppCon演示文稿中编译协程示例https://youtu.be/ZTqHjjm86Bw?t=560

遗憾的是编译失败:

$ g++-10 -pedantic -Wall -std=c++20 -fcoroutines main.cpp 
main.cpp: In function ‘std::future<int> compute_value()’:
main.cpp:7:16: error: unable to find the promise type for this coroutine
    7 |   int result = co_await std::async([]
      |                ^~~~~~~~

一开始,演示者警告说,他即将演示的只是一份提案。这让我感到困惑:std::future可以从协程返回,还是我只是尝试错误地调用它?

完整代码:

#include <coroutine>
#include <iostream>
#include <future>

std::future<int> compute_value(){
  int result = co_await std::async([] 
  {
    return 30;
  });

  co_return result;
}

int main() {
    std::cout << compute_value().get() << std::endl;
}

推荐答案

在C++20中(基本上1)没有实现必要的协程机制以使协程工作的标准库类型。此包括std::promise<T>/future<T>

不过,您可以为它们编写实现协程机制的包装器。

1:有support typesLIKEstd::suspend_always/never具有协程机器,但它们的功能并不像您想象的那样。

这篇关于协程能不能还STD::未来?(找不到此协程的承诺类型)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Unknown type name __m256 - Intel intrinsics for AVX not recognized?(未知类型名称__M256-英特尔AVX内部功能无法识别?)
How can an declare an array in a function that returns an array in c++(如何在用C++返回数组的函数中声明数组)
Is it possible to define a class in 2 or more file in C++?(在C++中可以在两个或多个文件中定义一个类吗?)
Why can#39;t I create an array of automatic variables?(为什么我不能创建一个自动变量数组?)
zeromq: reset REQ/REP socket state(Zeromq:重置REQ/REP套接字状态)
Can I resize a vector that was moved from?(我可以调整从中移出的矢量的大小吗?)