string name() const;
"*"
*this
123456789101112
// locale::name example #include <iostream> // std::cout #include <locale> // std::locale int main () { std::locale loc; // global locale std::cout << "The global locale is: " << loc.name() << '\n'; return 0; }
The global locale is: C