std::char_traits::compare
Da cppreference.com
< cpp | string | char traits
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
int compare( const CharT* lhs, const CharT* rhs, std::size_t count ); |
||
Compara os personagens
count
primeira das cadeias de caracteres lhs
e rhs
. A comparação é feita lexicographically.Original:
Compares the first
count
characters of the character strings lhs
and rhs
. The comparison is done lexicographically.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.
Índice |
[editar] Parâmetros
lhs, rhs | - | ponteiros para cadeias de caracteres para comparar
Original: pointers to character strings to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
count | - | o número de caracteres para comparar de cada seqüência de caracteres
Original: the number of characters to compare from each character string 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
Valor negativo se
lhs
é menos rhs
.Original:
Negative value if
lhs
is less than rhs
.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.
0 se
lhs
é igual rhs
.Original:
0 if
lhs
is equal to rhs
.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.
Valor positivo se
lhs
é maior rhs
.Original:
Positive value if
lhs
is greater than rhs
.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.
[editar] Exceções
(Nenhum)
Original:
(none)
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.
[editar] Complexidade
Linear.
Original:
Linear.
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.