Compartilhar via


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 é.

Comentários

A função do modelo retorna use_facet<ctype< CharType> >(_Loc).é(ctype<CharType>::xdigit, _Ch).

Hexadecimal base 16 do uso de dígitos para representar números, usando as letras sem diferenciação de maiúsculas e minúsculas Para números positivos F de 0 a 9 para representar números decimais 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

Cabeçalho: <locale>

namespace: STD