std::error_category
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| Defined in header <system_error>
|
||
| class error_category; |
(C++11およびそれ以降) | |
std::error_categoryマッピングおよびすべてerror_conditionsための説明文字列を保持する - std::system_categorystd::iostream_categoryなどのような特定のエラーカテゴリ型の基本クラスとして機能し、error_codeなど特定カテゴリごとにクラスがerror_conditionを定義しています。エラーカテゴリクラスのオブジェクトは参照によって渡さシングルトンとして扱われ、.Original:
std::error_category serves as the base class for specific error category types, such as std::system_category, std::iostream_category, etc. Each specific category class defines the error_code - error_condition mapping and holds the explanatory strings for all error_conditions. The objects of error category classes are treated as singletons, passed by reference.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] メンバ関数
error_categoryを構築しますOriginal: constructs an error_categoryThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
| [仮想] |
error_categoryを破棄しますOriginal: destructs an error_categoryThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (仮想パブリックメンバ関数) |
| operator= [削除された] |
アサイナブルコピーしません Original: not copy assignable The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) |
| [仮想] |
カテゴリの名前を取得します Original: obtains the name of the category The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (仮想パブリックメンバ関数) |
maps error_code to error_condition (仮想パブリックメンバ関数) | |
| [仮想] |
error_codeとerror_condition等価を比較しますOriginal: compares error_code and error_condition for equivalenceThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (仮想パブリックメンバ関数) |
| [仮想] |
説明文字列を取得します Original: obtains the explanatory string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (仮想パブリックメンバ関数) |
| 2エラーのカテゴリを比較します Original: compares two error categories The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
[編集] 具体的なエラーカテゴリ
| (C++11) |
一般的なエラーカテゴリを識別します Original: identifies the generic error category The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
| (C++11) |
オペレーティング·システムのエラー·カテゴリを識別します Original: identifies the operating system error category The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
| (C++11) |
iostreamのエラー·カテゴリを識別します Original: identifies the iostream error category The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
| (C++11) |
将来のエラー·カテゴリを識別します Original: identifies the future error category The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
[編集] 参照
| (C++11) |
携帯用のエラーコードを取得しています Original: holds a portable error code The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (クラス) |
| (C++11) |
プラットフォーム依存のエラーコードを取得しています Original: holds a platform-dependent error code The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (クラス) |

