• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    type-alias
    <exception>

    std::exception_ptr

    namespace std {
      using exception_ptr = unspecified;
    }
    

    概要

    例外オブジェクトを指すポインタ。

    exception_ptrの具体的な型は未規定だが、ヌル値を格納可能で、あらゆる例外型のオブジェクトを指すことが可能なポインタである。 そのデフォルトコンストラクタはヌル値を指すよう初期化する。

    この型は通常のポインタと違い、算術型、列挙型、ポインタ型への暗黙変換はできない。

    exception_ptrは通常、参照カウントスマートポインタとして実装されるだろう。

    exception_ptrの主な用途は、バックグランドスレッドからメインスレッドに、例外オブジェクトを持ち運ぶ、というものである。標準ライブラリにおいては、promisefutureの実装で使用される。

    #include <iostream>
    #include <exception>
    #include <stdexcept>
    
    int main()
    {
      std::exception_ptr ep1;
    
      // nullptrと比較可能
      if (ep1 == nullptr) {
        std::cout << "1. null" << std::endl;
      }
    
      // bool値に暗黙変換可能
      if (!ep1) {
        std::cout << "2. null" << std::endl;
      }
    
      // デフォルト構築したexception_ptrはヌル値
      if (ep1 == std::exception_ptr()) {
        std::cout << "3. null" << std::endl;
      }
    
      // 例外処理中ではないためcurrent_exceptionはヌル値を指すexception_ptrを返す
      ep1 = std::current_exception();
      if (!ep1) {
        std::cout << "4. null" << std::endl;
      }
    
      try {
        throw std::runtime_error("error!");
      }
      catch (...) {
        // 処理中の例外を取得
        ep1 = std::current_exception();
      }
    
      try {
        if (ep1) {
          // exception_ptrで再送出
          std::rethrow_exception(ep1);
        }
      }
      catch (std::runtime_error& e) {
        std::cout << e.what() << std::endl;
      }
    }
    

    出力

    1. null
    2. null
    3. null
    4. null
    error!
    

    バージョン

    言語

    • C++11

    処理系

    • Clang: ??
    • GCC: 4.7.0
    • ICC: ??
    • Visual C++: 2010 , 2012 , 2013 , 2015 , 2017
      • 2010では、boolへの暗黙の変換、!=での比較が実装されていない。上記コード例の1.と3.そしてerrorの箇所にあるifはコンパイルエラーになる。

    参照