• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <system_error>

    std::error_condition::assign

    void assign(int val, const error_category& cat) noexcept;
    

    概要

    エラー値とエラーカテゴリを再設定する。

    要件

    パラメータvalをエラー値、catをエラーカテゴリと見なして保持する。

    戻り値

    なし

    例外

    投げない

    #include <iostream>
    #include <system_error>
    
    int main()
    {
      std::error_condition ec;
    
      ec.assign(static_cast<int>(std::errc::invalid_argument), std::generic_category());
    
      if (ec) {
        std::cout << "error" << std::endl;
      }
      else {
        std::cout << "success" << std::endl;
      }
    
      std::cout << ec.value() << std::endl;
      std::cout << ec.category().name() << std::endl;
    }
    

    出力

    error
    22
    generic
    

    バージョン

    言語

    • C++11

    処理系

    参照