I/O manipulators | ||||
Print functions(C++23) | ||||
C-style I/O | ||||
Buffers | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++20) | ||||
Streams | ||||
Abstractions | ||||
File I/O | ||||
String I/O | ||||
Array I/O | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
Synchronized Output | ||||
(C++20) | ||||
Types | ||||
Error category interface | ||||
(C++11) | ||||
(C++11) |
Member functions | ||||
State functions | ||||
Formatting | ||||
Miscellaneous | ||||
basic_ios::imbue | ||||
Protected member functions | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) |
std::locale imbue(conststd::locale& loc); | ||
Replaces the current locale. Effectively callsios_base::imbue(loc) and if there is an associated stream buffer (rdbuf()!=0), then callsrdbuf()->pubimbue(loc).
Contents |
loc | - | the new locale |
The previous locale, as returned byios_base::imbue(loc).
May throw implementation-defined exceptions.
#include <iostream>#include <locale>#include <sstream> int main(){std::istringstream iss; iss.imbue(std::locale("en_US.UTF8")); std::cout<<"Current locale: "<< iss.getloc().name()<<'\n'; iss.imbue(std::locale());std::cout<<"Global locale : "<< iss.getloc().name()<<'\n';}
Output:
Current locale: en_US.UTF8Global locale : C