- exception[meta header]
- std[meta namespace]
- function[meta id-type]
- cpp11[meta cpp]
namespace std {
exception_ptr current_exception() noexcept;
}
- exception_ptr[link exception_ptr.md]
現在処理中の例外オブジェクトを指すexception_ptr
を取得する。
- 現在処理中の例外オブジェクトを指す
exception_ptr
を返す - 処理中の例外オブジェクトがない場合は、ヌルを指す
exception_ptr
を返す - この関数がメモリ確保する必要があり、それに失敗した場合、
bad_alloc
オブジェクトを指すexception_ptr
を返す - この関数を2回以上呼び出した場合に、同じオブジェクトを指す
exception_ptr
が返るとは限らない。(呼び出しのたびに例外オブジェクトを作る可能性がある) - 例外オブジェクトをコピーする際に例外が送出された場合、送出された例外オブジェクトを指す
exception_ptr
を返す- ただし、無限再帰を回避するために、
bad_exception
オブジェクトを指すexception_ptr
を返すことが実装に許可される
- ただし、無限再帰を回避するために、
投げない
この関数は、catch
節で使用すれば、処理中の例外オブジェクトへの例外ポインタを取得できる。
ただし、例外送出によるスタック巻き戻し中は、取得できないので注意。(スタック巻き戻し中とは、try
ブロック中で定義されたオブジェクトのデストラクタのこと)
#include <iostream>
#include <exception>
#include <stdexcept>
int main()
{
std::exception_ptr ep;
try {
throw std::runtime_error("error!");
}
catch (...) {
std::cout << "catch" << std::endl;
ep = std::current_exception(); // 処理中の例外ポインタを取得
}
if (ep) {
std::cout << "rethrow" << std::endl;
std::rethrow_exception(ep); // 再スロー
}
}
- std::current_exception[color ff0000]
- std::exception_ptr[link exception_ptr.md]
- std::runtime_error[link /reference/stdexcept.md]
- std::rethrow_exception[link rethrow_exception.md]
catch
rethrow
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
terminate called after throwing an instance of 'std::runtime_error'
what(): error!
- C++11
- Clang: ??
- GCC: 4.6.1 [mark verified]
- ICC: ??
- Visual C++: 2010 [mark verified], 2012 [mark verified], 2013 [mark verified], 2015 [mark verified]