Espaços nominais
Variantes
Acções

std::regex_traits::value

Da cppreference.com
< cpp‎ | regex‎ | regex traits

 
 
Biblioteca de expressões regulares
Classes
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Algoritmos
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iteradores
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Exceções
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Características
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Constantes
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
 
int value( CharT ch, int radix )const;
Determina o valor representado pelo ch dígito no radix base numérica, dada a localidade atualmente imbuído.
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.

[editar]Parâmetros

ch -
o personagem que pode representar um dígito
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 -
ou 8, 10 ou 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.

[editar]Valor de retorno

O valor numérico se ch de fato representa um dígito na localidade atualmente imbuída que é válido para o radix base numérica, ou -1 em erro.
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.

[editar]Exemplo

close