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. (public функция-член) | |