std::char_traits<CharT>::to_char_type

< cpp‎ | string‎ | char traits
static char_type to_char_type( int_type c );
(C++11 前)
static constexpr char_type to_char_type( int_type c ) noexcept;
(C++11 起)

转换 int_type 的值到 char_type 。若无等价值(例如 ceof() 值的副本时),结果未指定。

正式而言,返回满足 X::eq_int_type(c, X::to_int_type(x)) 为 true 的值 x ,且若这种 x 不存在在返回未指定值。

参数

c - 要转换的值

返回值

等于 c 的值。

复杂度

常数。