std::strtol, std::strtoll
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| Defined in header <cstdlib>
|
||
| long strtol( const char *str, char **str_end, int base ); |
||
| long long strtoll( const char *str, char **str_end, int base ); |
(C++11およびそれ以降) | |
strが指すバイト列に整数値を解釈します.Original:
Interprets an integer value in a byte string pointed to by
str.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.
Function discards any whitespace characters until first non-whitespace character is found. Then it takes as many characters as possible to form a valid base-n (where n=base) integer number representation and converts them to an integer value. The valid integer value consists of the following parts:
- (オプション) plus or minus sign
- (オプション) prefix (
0) indicating octal base (applies only when the base is 8) - (オプション) prefix (
0xor0X) indicating hexadecimal base (applies only when the base is 16) - a sequence of digits
The set of valid digits for base-2 integer is 01, for base-3 integer is 012, and so on. For bases larger than 10, valid digits include alphabetic characters, starting from Aa for base-11 integer, to Zz for base-36 integer. The case of the characters is ignored.
関数は、最後の文字の解釈の文字を指すように
str_endが指すポインタを設定します。 str_endNULLである場合、それは無視されます.Original:
The functions sets the pointer pointed to by
str_end to point to the character past the last character interpreted. If str_end is NULL, it is ignored.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.
strが空であるか、期待された形式を持っていない場合、変換は行われません、としますif(str_endNULLはありません)strの値がstr_endが指すオブジェクトに格納されてい.Original:
If the
str is empty or does not have the expected form, no conversion is performed, and (if str_end is not NULL) the value of str is stored in the object pointed to by str_end.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.
目次 |
[編集] パラメータ
| str | - | 解釈されるNULL終端バイト文字列へのポインタ
Original: pointer to the null-terminated byte string to be interpreted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| str_end | - | 文字へのポインタへのポインタ..
Original: pointer to a pointer to character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| base | - | 解釈された整数値のベース
Original: base of the interpreted integer value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
- 成功した場合は、
strの内容に対応する整数値が返されます.Original:If successful, an integer value corresponding to the contents ofstris returned.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - 変換された値が対応する戻り値の型の範囲から外れた場合、範囲エラーが発生します(設定をerrnoへERANGE)とLONG_MAX、LONG_MIN、LLONG_MAXまたはLLONG_MIN返されます.Original:If the converted value falls out of range of corresponding return type, a range error occurs (setting errno to ERANGE) and LONG_MAX, LONG_MIN, LLONG_MAX or LLONG_MIN is returned.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - 変換を実行できなかった場合は、0が返されます。.Original:If no conversion can be performed, 0 is returned.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例
| This section is incomplete Reason: no example |
[編集] 参照
| 整数値をバイト文字列に変換します Original: converts a byte string to an integer value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
| 符号なし整数値をバイト文字列に変換します Original: converts a byte string to an unsigned integer value 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 strtol, strtoll
| |

