std::ctype<char>::table
来自 cppreference.cn
< 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
的数组)。
[编辑] 示例
此章节不完整 原因:没有示例 |