命名空间
变体
操作

std::ctype<char>::classic_table

来自 cppreference.cn
 
 
 
 
 
定义于头文件 <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> facet 使用此表进行分类。

[编辑] 示例