C++ åèæå
- C++11
- C++14
- C++17
- C++20
- C++ ç¼è¯å¨æ¯ææ åµè¡¨
- ç¬ç«ä¸å®¿ä¸»å®ç°
- C++ è¯è¨
- C++ å ³é®è¯
- é¢å¤çå¨
- C++ æ ååºå¤´æä»¶
- å ·åè¦æ±
- åè½ç¹æ§æµè¯ (C++20)
- å·¥å ·åº
- ç±»åæ¯æï¼åºæ¬ç±»åãRTTIãç±»åç¹æ§ï¼
- æ¦å¿µåº (C++20)
- é误å¤ç
- std::exception_ptr
- std::error_code
- std::error_condition
- std::terminate
- std::exception
- std::current_exception
- std::rethrow_exception
- std::make_exception_ptr
- std::unexpected
- std::uncaught_exception, std::uncaught_exceptions
- assert
- errno
- std::nested_exception
- std::throw_with_nested
- std::rethrow_if_nested
- std::terminate_handler
- std::get_terminate
- std::set_terminate
- std::bad_exception
- std::unexpected_handler
- std::get_unexpected
- std::set_unexpected
- é误å·
- std::logic_error
- std::invalid_argument
- std::domain_error
- std::length_error
- std::out_of_range
- std::runtime_error
- std::range_error
- std::overflow_error
- std::underflow_error
- std::tx_exception
- std::error_category
- std::generic_category
- std::system_category
- std::errc
- std::system_error
- 注é
- 卿å å管ç
- æ¥æåæ¶é´å·¥å ·
- å符串åº
- 容å¨åº
- è¿ä»£å¨åº
- èå´åº (C++20)
- ç®æ³åº
- æ°å¼åº
- è¾å ¥/è¾åºåº
- æä»¶ç³»ç»åº
- æ¬å°ååº
- æ£å表达å¼åº
- ååæä½åº
- çº¿ç¨æ¯æåº
- å®éªæ§ C++ ç¹æ§
- æç¨çèµæº
- ç´¢å¼
- std 符å·ç´¢å¼
- åç¨æ¯æ (C++20)
- C++ å ³é®è¯
ä½ç½®ï¼é¦é¡µ > C++ åèæå >é误å¤ç > std::rethrow_exception
std::rethrow_exception
| å®ä¹äºå¤´æä»¶ <exception>
|
||
| [[noreturn]] void rethrow_exception( std::exception_ptr p ) |
(C++11 èµ·) | |
æåºå
åæè·çå¼å¸¸å¯¹è±¡ï¼å®ä¸ºå¼å¸¸æé p æå¼ç¨ã
åæ°
| p | - | é空 std::exception_ptr |
è¿åå¼
ï¼æ ï¼
示ä¾
è¿è¡æ¤ä»£ç
#include <iostream> #include <string> #include <exception> #include <stdexcept>  void handle_eptr(std::exception_ptr eptr) // æå¼ä¼ é ok { try { if (eptr) { std::rethrow_exception(eptr); } } catch(const std::exception& e) { std::cout << "Caught exception \"" << e.what() << "\"\n"; } }  int main() { std::exception_ptr eptr; try { std::string().at(1); // è¿çæä¸ä¸ª std::out_of_range } catch(...) { eptr = std::current_exception(); // æè· } handle_eptr(eptr); } // std::out_of_range çææå½æ°è°ç¨äºæ¤ï¼å¨ ept æææ¶
è¾åºï¼
Caught exception "basic_string::at"
åé
| (C++11) |
ç¨äºå¤çå¼å¸¸å¯¹è±¡çå
±äº«æéç±»å (typedef) |
| (C++11) |
æè·å½åå¼å¸¸å° std::exception_ptr ä¹ä¸ (彿°) |