std::basic_ios::widen
来自cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| char_type widen( char c ) const; |
||
将一个字符
c其相当于在当前区域设置。结果被转换从char流内的,如果需要使用的字符类型.Original:
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.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
有效地调用std::use_facet< std::ctype<char_type> >(getloc()).widen(c).
Original:
Effectively calls std::use_facet< std::ctype<char_type> >(getloc()).widen(c).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 参数
| c | - | 字符转换
Original: character to convert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[编辑] 返回值
字符转换为
char_typeOriginal:
Character converted to
char_typeThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[编辑] 另请参阅
| 缩小字符 Original: narrows characters The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (公共成员函数) | |