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
|
||||
|
定义于头文件
<locale>
|
||
|
static
const
mask
*
classic_table
(
)
throw
(
)
;
|
(C++11 前) | |
|
static
const
mask
*
classic_table
(
)
noexcept
;
|
(C++11 起) | |
返回与最小"C"区域设置使用的分类相匹配的分类表。
目录 |
参数
(无)
返回值
指向分类表中第一个元素的指针(该表是一个大小为
std::ctype<char>::table_size
的数组)。
注释
默认构造的 std:: ctype < char > 刻面使用此表进行分类。
示例
|
本节内容不完整
原因:缺少示例 |