函数
<exception>

std::rethrow_exception

[[noreturn]] void rethrow_exception (exception_ptr p);
重新抛出异常
抛出由 p 指向的异常对象。

参数

p
一个指向异常对象的 exception_ptr 对象。
此参数不能是 *null* exception_ptr
exception_ptr 是一种指针类型的对象,它指向异常。

返回值

无(该函数永不返回)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// exception_ptr example
#include <iostream>       // std::cout
#include <exception>      // std::exception_ptr, std::current_exception, std::rethrow_exception
#include <stdexcept>      // std::logic_error

int main () {
  std::exception_ptr p;
  try {
     throw std::logic_error("some logic_error exception");   // throws
  } catch(const std::exception& e) {
     p = std::current_exception();
     std::cout << "exception caught, but continuing...\n";
  }

  std::cout << "(after exception)\n";

  try {
     std::rethrow_exception (p);
  } catch (const std::exception& e) {
     std::cout << "exception caught: " << e.what() << '\n';
  }
  return 0;
}

输出

exception caught, but continuing...
(after exception)
exception caught: some logic_error exception


数据竞争

并发调用指向同一异常的 exception_ptr 对象的 rethrow_exception 是安全的。

但是请注意,某些实现可能不会在进入 catch *异常处理块*时复制指向的对象,在这种情况下并发访问重新抛出的异常对象可能会引入数据竞争。

异常安全

抛出异常。

如果 p 是一个 *null* exception_ptr,则会导致 *未定义行为*。

另见