• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <system_error>

    std::error_category::name

    virtual const char* name() const noexcept = 0;
    

    概要

    カテゴリの名前を取得する

    戻り値

    エラーの分類を示す文字列を返す

    例外

    投げない

    #include <iostream>
    #include <system_error>
    
    int main()
    {
      const std::error_category& generic_cat = std::generic_category();
      std::cout << generic_cat.name() << std::endl;
    
      const std::error_category& system_cat = std::system_category();
      std::cout << system_cat.name() << std::endl;
    }
    

    出力

    generic
    system
    

    バージョン

    言語

    • C++11

    処理系

    参照