std::strtoul, std::strtoull
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| Defined in header <cstdlib>
|
||
| unsigned long strtoul( const char *str, char **str_end, int base ); |
||
| unsigned long long strtoull( const char *str, char **str_end, int base ); |
(C++11およびそれ以降) | |
strが指すバイト列の符号なし整数値を解釈.Original:
Interprets an unsigned 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) unsigned integer number representation and converts them to an integer value. The valid unsigned integer value consists of the following parts: None
- (オプション) 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 | - | 解釈される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の内容に対応する整数値。変換された値が対応する戻り値の型の範囲から外れた場合、範囲エラーが発生し、ULONG_MAXまたはULLONG_MAX返されます。変換を実行できなかった場合は、0が返されます。.Original:
Integer value corresponding to the contents of
str on success. If the converted value falls out of range of corresponding return type, range error occurs and ULONG_MAX or ULLONG_MAX is returned. 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.
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 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 strtoul, strtoull
| |

