命名空间
变体
操作

std::ctype<char>::classic_table

来自 cppreference.com
< cpp‎ | locale‎ | ctype char
 
 
 
 
定义在头文件 <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> 方面使用此表进行分类。

[编辑] 示例