isxdigit
Testet, ob ein Element in einem Gebietsschema ein Zeichen, das verwendet wird, um eine Hexadezimalzahl darzustellen.
template<Class CharType>
bool isxdigit(
CharType _Ch,
const locale& _Loc
)
Parameter
_Ch
Das zu testenden Element._Loc
Das Gebietsschema, das das zu testenden Element enthält.
Rückgabewert
true, wenn das Element, das getestet wird, ein Zeichen, das verwendet wird, um eine Hexadezimalzahl darzustellen; false, wenn nicht.
Hinweise
Die Vorlagenfunktion gibt use_facet<C< CharType zurück > >(_Loc).ist(::<ctype>CharTypexdigit, _Ch).
Hexadezimalzifferenverwendungs-Basis 16, um von Zahlen, mit der die Groß-/Kleinschreibung keine Rolle PlusBuchstaben A der Zahl 0 mit 9 multipliziert. Das von F darzustellen, die Dezimalzahlen 0 bis 15.
Beispiel
// 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;
}
Ausgabe
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.
Anforderungen
Gebietsschema Header: <>
Namespace: std