std::regex_traits::value
提供: cppreference.com
< cpp | regex | regex traits
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
int value( CharT ch, int radix ) const; |
||
現在吹き込まロケール指定された数値ベース
ch
の数字radix
、で表される値を決定.Original:
Determines the value represented by the digit
ch
in the numeric base radix
, given the currently imbued locale.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.
[編集] パラメータ
ch | - | 数字を表すことができる文字
Original: the character that may represent a digit The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
radix | - | 8、10、または16のいずれか
Original: either 8, 10, or 16 The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
ch
が実際の数値基本radix
、あるいはエラー時に-1に対して有効である現在吹き込まロケールで数字を表す場合の数値.Original:
The numeric value if
ch
indeed represents a digit in the currently imbued locale that is valid for the numeric base radix
, or -1 on error.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 |