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.com
< cpp | string | char traits
static int_type to_int_type( char_type c ); |
(C++11 前) | |
static constexpr int_type to_int_type( char_type c ) noexcept; |
(C++11 起) | |
将 c 转换到 int_type
。
对字符特性的关于 X::to_int_type
的通用要求参考字符特性 (CharTraits) 。
参数
c | - | 要转换的值 |
返回值
等价于 c 的值。
复杂度
常数。
注意
对于每个 char_type
的合法值,都有一个与 eof() 不同的 int_type
值。