• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <system_error>

    std::error_condition::explicit operator bool

    explicit operator bool() const noexcept;
    

    概要

    error_conditionオブジェクトがエラー状態であるかを判定する。

    error_conditionクラスのデフォルトエラー値である0が正常と見なされる。

    trueの場合はエラーであることを意味し、falseの場合は正常を意味する。

    戻り値

    value() != 0

    例外

    投げない

    #include <iostream>
    #include <system_error>
    #include <string>
    
    void print(const std::error_condition& ec)
    {
      if (ec) {
        std::cout << "error! : " << ec.message() << std::endl;
      }
      else {
        std::cout << "success" << std::endl;
      }
    }
    
    int main()
    {
      std::error_condition err1;
      print(err1);
    
      std::error_condition err2(static_cast<int>(std::errc::invalid_argument),
                                std::generic_category());
      print(err2);
    }
    

    出力

    success
    error! : Invalid argument
    

    バージョン

    言語

    • C++11

    処理系

    参照