std::basic_ios::imbue
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. |
std::locale& imbue( const std::locale& loc ); |
||
Replaces the current locale. Effectively calls ios_base::imbue(loc) and if there is an associated stream buffer (rdbuf() != 0), then calls rdbuf()->pubimbue(loc).
Inhaltsverzeichnis |
[Bearbeiten] Parameter
loc | - | the new locale |
[Bearbeiten] Rückgabewert
The previous locale, as returned by ios_base::imbue(loc).
[Bearbeiten] Ausnahmen
(None)
Original:
(none)
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] Beispiel
This section is incomplete Reason: no example |