std::basic_ios::widen
Aus 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; | ||
Konvertiert ein Zeichen
c
seine Entsprechung in der momentanen Locale. Das Ergebnis wird aus char um Zeichentyp innerhalb des Stroms verwendet, wenn nötig überführt .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.
Effektiv nennt 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.
[Bearbeiten]Parameter
c | - | Charakter zu konvertieren 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. |
[Bearbeiten]Rückgabewert
Character umgewandelt
char_type
Original:
Character converted to
char_type
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.
[Bearbeiten]Siehe auch
verengt Zeichen 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. (öffentliche Elementfunktion) |