public static member function
<locale>

std::ctype::classic_table

protected:static const mask* classic_table() const throw();    // only defined for ctype<char>
public:static const mask* classic_table() const noexcept;   // only defined for ctype<char>
获取经典表
返回一个指向元素数组的指针,该数组的成员类型为 mask,根据经典区域设置"C" 区域设置)对每个字符进行分类。

这是一个静态成员,无论使用该方面的区域设置如何,它都会被定义。

请参阅标题 <cctype> 以了解 ASCII 字符的分类(在大多数系统上,"C" 区域设置中的前 127 个字符)。

参数



返回值

指向 mask 元素数组的第一个元素的指针。

成员类型 mask 是一个位掩码类型(继承自 ctype_base)。

异常安全

无异常保证: 绝不抛出异常。

另见