std::wcstol, std::wcstoll
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| ヘッダ <cwchar> で定義
|
||
| long wcstol( const wchar_t* str, wchar_t** str_end, int base ); |
||
| long long wcstoll( const wchar_t* str, wchar_t** str_end, int base ); |
(C++11およびそれ以降) | |
strが指すワイド文字列の整数値を解釈.Original:
Interprets an integer value in a wide 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 wide 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 wide 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 wide 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の内容に対応する整数値。変換された値が対応する戻り値の型の範囲から外れた場合、範囲エラーが発生し、LONG_MAX、LONG_MIN、LLONG_MAXまたはLLONG_MIN返されます。変換を実行できなかった場合は、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 LONG_MAX, LONG_MIN, LLONG_MAX or LLONG_MIN 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 |
[編集] 参照
| ワイド文字列を符号なし整数値に変換します (関数) | |
| wcstol, wcstoll の C言語リファレンス
| |