命名空间
变体
操作

std::char_traits<char>::to_int_type, std::char_traits<wchar_t>::to_int_type, std::char_traits<char8_t>::to_int_type, std::char_traits<char16_t>::to_int_type, std::char_traits<char32_t>::to_int_type

来自 cppreference.cn
< cpp‎ | string‎ | char traits
static int_type to_int_type( char_type c );
(C++11 起为 constexpr)
(C++11 起无异常抛出)

c 转换为 int_type

关于 X::to_int_type 的字符特性的一般要求,请参见 CharTraits

目录

[编辑] 参数

c - 要转换的值

[编辑] 返回值

等同于 c 的值。

[编辑] 复杂度

常数时间。

[编辑] 注意

对于 char_type 的每个有效值,必须存在一个唯一的 int_type 值,并且该值与 eof() 不同。