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

履歴 編集

function
<system_error>

std::error_category::message(C++11)

virtual string message(int ev) const = 0;

概要

エラーコードに対応するメッセージを取得する

戻り値

エラーコードを説明するメッセージを返す

#include <iostream>
#include <system_error>
#include <string>
#include <cerrno>

int main()
{
  const std::error_category& cat = std::generic_category();

  std::string msg = cat.message(ENOTDIR);
  std::cout << msg << std::endl;
}

出力

Not a directory

バージョン

言語

  • C++11

処理系

参照