std::ctype <char> :: classic_table
From cppreference.net
<
cpp
|
locale
|
ctype char
C++
Text processing library
| Localization library | |||||||||||||||||||||||||
| Regular expressions library (C++11) | |||||||||||||||||||||||||
| Formatting library (C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
Localization library
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::ctype
| Member functions | ||||
| Member functions of ctype<char> | ||||
|
ctype<char>::classic_table
|
||||
|
Definiert in Header
<locale>
|
||
|
static
const
mask
*
classic_table
(
)
throw
(
)
;
|
(bis C++11) | |
|
static
const
mask
*
classic_table
(
)
noexcept
;
|
(seit C++11) | |
Gibt die Klassifizierungstabelle zurück, die der Klassifizierung des minimalen "C"-Locales entspricht.
Inhaltsverzeichnis |
Parameter
(keine)
Rückgabewert
Ein Zeiger auf das erste Element in der Klassifizierungstabelle (welche ein Array der Größe
std::ctype<char>::table_size
ist).
Hinweise
Standardmäßig konstruierte std:: ctype < char > Facetten verwenden diese Tabelle zur Klassifizierung.
Beispiel
|
Dieser Abschnitt ist unvollständig
Grund: Kein Beispiel |