isxdigit
Testa se um elemento em uma localidade é um caractere usado para representar um número hexadecimal.
template<Class CharType>
bool isxdigit(
CharType _Ch,
const locale& _Loc
)
Parâmetros
_Ch
O elemento a ser testado._Loc
A localidade que contém o elemento a ser testado.
Valor de retorno
true se o elemento testado é um caractere usado para representar um número hexadecimal; false se não for.
Comentários
A função do modelo retorna use_facet<C< CharType> >(_Loc).é(::<xdigit>, _ChdectypeCharType).
Hexadecimal base 16 do uso de dígitos para representar números, usando as letras sem diferenciação de maiúsculas e minúsculas positivas A de 0 a 9 com F- 2.0 para representar números decimais de 0 a 15.
Exemplo
// locale_isxdigit.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc ( "German_Germany" );
bool result1 = isxdigit ( '5', loc );
bool result2 = isxdigit ( 'd', loc );
bool result3 = isxdigit ( 'q', loc );
if ( result1 )
cout << "The character '5' in the locale is "
<< "a hexidecimal digit-character." << endl;
else
cout << "The character '5' in the locale is "
<< " not a hexidecimal digit-character." << endl;
if ( result2 )
cout << "The character 'd' in the locale is "
<< "a hexidecimal digit-character." << endl;
else
cout << "The character 'd' in the locale is "
<< " not a hexidecimal digit-character." << endl;
if ( result3 )
cout << "The character 'q' in the locale is "
<< "a hexidecimal digit-character." << endl;
else
cout << "The character 'q' in the locale is "
<< " not a hexidecimal digit-character." << endl;
}
Saída
The character '5' in the locale is a hexidecimal digit-character.
The character 'd' in the locale is a hexidecimal digit-character.
The character 'q' in the locale is not a hexidecimal digit-character.
Requisitos
localidade <deCabeçalho: >
Namespace: std