std::basic_ios::widen
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
char_type widen( char c ) const; |
||
将一个字符
c
其相当于在当前区域设置。结果被转换从char流内的,如果需要使用的字符类型.原文:
Converts a character
c
to its equivalent in the current locale. The result is converted from char to character type used within the stream if needed.有效地调用std::use_facet< std::ctype<char_type> >(getloc()).widen(c).
原文:
Effectively calls std::use_facet< std::ctype<char_type> >(getloc()).widen(c).
[编辑] 参数
c | - | 字符转换
|
[编辑] 返回值
字符转换为
char_type
[编辑] 另请参阅
缩小字符 (公共成员函数) |