std::basic_ios::widen
De 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; |
||
Convierte un carácter
c a su equivalente en la localización actual. El resultado se convierte de char tipo de carácter utilizado dentro de la corriente si fuera necesario .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.
Efectivamente llama 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.
[editar] Parámetros
| c | - | caracteres para convertir
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. |
[editar] Valor de retorno
Carácter convertido a
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.
[editar] Ver también
| estrecha caracteres 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. (miembro público función) | |