std::strerror
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cstring>
|
||
char* strerror( int errnum ); |
||
戻り値のエラーコードのテキストバージョン
errnum
。errnum
通常errno
変数から取得された、しかし、この関数は、型intの任意の値を受け入れます。メッセージはロケール固有.Original:
Returns text version of the error code
errnum
. errnum
is usually acquired from the errno
variable, however the function accepts any value of type int. The message is locale-specific.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.
返されたバイト文字列が変更されてはならないさプログラムによって、しかし
strerror
関数への後続の呼び出しによって上書きされることがあり. Original:
The returned byte string must not be modified by the program, but may be overwritten by a subsequent call to the
strerror
function. 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.
目次 |
[編集] パラメータ
errnum | - | エラーコードを参照する整数値
Original: integral value referring to a error code The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
エラーコードに対応するNULL終端バイト文字列へのポインタ
errnum
.Original:
Pointer to a null-terminated byte string corresponding to the error code
errnum
.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.
[編集] 例
このコードを実行します
出力:
log(-1) failed: Numerical argument out of domain
[編集] 参照
標準のPOSIX互換のエラー条件のためのマクロ Original: macros for standard POSIX-compatible error conditions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (マクロ定数) | |
C documentation for strerror
|