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;
}
xxxxxxxxxx
#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
処理系
- Clang: ??
- GCC: 4.6.1 ✅
- ICC: ??
- Visual C++: 2010 ✅