命名空间
变体
操作

std::ctype<char>::table

来自 cppreference.com
< cpp‎ | locale‎ | ctype char
 
 
 
 
定义在头文件 <locale>
const mask* table() const throw();
(直到 C++11)
const mask* table() const noexcept;
(自 C++11 起)

返回在该 std::ctype<char> 实例的构造函数中提供的分类表,或者如果未提供任何表,则返回 classic_table() 的副本。

[编辑] 参数

(无)

[编辑] 返回值

指向分类表中第一个元素的指针(它是一个大小为 std::ctype<char>::table_size 的数组)。

[编辑] 示例