在线文档教程
C++
本土化 | Localizations

std::locale::name

STD::locale::name

Defined in header
std::string name() const;

返回区域设置的名称,该名称是操作系统知道它的名称,例如“POSIX”或“en”。[医]美国UTF 8或“英语”[医]1252“。如果区域设置不是系统提供的区域设置的副本,则字符串“%2A“被归还。

返回值

地区名称或“%2A“”如果不知道名字的话。

二次

#include <locale> #include <iostream> #include <string> int main() { std::locale loc(std::locale(), new std::ctype<char> std::cout << "The default locale is " << std::locale().name() << '\n' << "The user's locale is " << std::locale("").name() << '\n' << "A nameless locale is " << loc.name() << '\n'; }

二次

产出:

二次

The default locale is C The user's locale is en_US.UTF8 A nameless locale is *

二次

另见

(constructor)constructs a new locale (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/locale/locale/name