gpt4 book ai didi

c++ - 如何获取 promise::set_exception(x) 的参数?

转载 作者:可可西里 更新时间:2023-11-01 15:08:04 25 4
gpt4 key购买 nike

我在几个地方找到了关于如何使用 promise 的引用 copy_exception,但我在当前的 FDIS 中找不到它。自从那些博客以来,是否有关于如何使用 set_exception() 的替代方法?

例如here

void asyncFun(promise<int> intPromise)
{
int result;
try {
// calculate the result
intPromise.set_value(result);
} catch (MyException e) {
intPromise.set_exception(std::copy_exception(e)); // <- copy
}
}

我发现 std::current_exception() here .

catch(...)
{
p.set_exception(std::current_exception());
}

因此我的问题:

  • 我是否应该始终使用 current_exception(),即使我没有捕捉到“...”?
  • 或者 copy_exception 是否有新的名称?

最佳答案

copy_exception 有不同的名称。 copy_exception 在标准化过程的后期由于对其实际作用的混淆而被重命名:

template<class E>
exception_ptr make_exception_ptr(E e) noexcept;

Effects: Creates an exception_ptr object that refers to a copy of e, ...

使用 make_exception_ptrcurrent_exception 都可以,具体取决于您尝试设置的异常。

关于c++ - 如何获取 promise::set_exception(x) 的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7545563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com