命名空间
变体
操作

std::setlocale

来自 cppreference.com
< cpp‎ | locale
定义在头文件 <clocale>
char* setlocale( int category, const char* locale );

setlocale 函数安装指定的系统区域设置或其部分作为新的 C 区域设置。这些修改将保持有效,并影响所有区域设置敏感的 C 库函数的执行,直到下次调用 setlocale 为止。如果 locale 是空指针,setlocale 会查询当前的 C 区域设置,而不进行修改。

内容

[编辑] 参数

category - 区域设置类别标识符,为以下 LC_xxx 宏之一。可以为 0.
locale - 特定于系统的区域设置标识符。可以为 "" 表示用户首选的区域设置,或为 "C" 表示最小区域设置

[编辑] 返回值

指向一个窄的空终止字符串的指针,该字符串标识应用更改(如果有)后的 C 区域设置,或者在失败时返回空指针。

返回的字符串的副本以及本次调用 std::setlocale 中使用的类别,可以在程序的后面使用,以将区域设置恢复到本次调用结束时的状态。

[编辑] 说明

在程序启动期间,相当于 std::setlocale(LC_ALL, "C"); 的操作会在任何用户代码运行之前执行。

尽管返回类型为 char*,但修改指向的字符会导致未定义的行为。

因为 setlocale 会修改全局状态,这会影响依赖区域设置的函数的执行,所以在另一个线程执行以下任何函数时,从一个线程中调用它是未定义的行为: std::fprintfstd::isprintstd::iswdigitstd::localeconvstd::tolowerstd::fscanfstd::ispunctstd::iswgraphstd::mblenstd::toupperstd::isalnumstd::isspacestd::iswlowerstd::mbstowcsstd::towlowerstd::isalphastd::isupperstd::iswprintstd::mbtowcstd::towupperstd::isblankstd::iswalnumstd::iswpunctstd::setlocalestd::wcscollstd::iscntrlstd::iswalphastd::iswspacestd::strcollstd::wcstodstd::isdigitstd::iswblankstd::iswupperstd::strerrorstd::wcstombsstd::isgraphstd::iswcntrlstd::iswxdigitstd::strtodstd::wcsxfrmstd::islowerstd::iswctypestd::isxdigit.

POSIX 还定义了一个名为 "POSIX" 的区域设置,它始终可用,并且与默认的最小 "C" 区域设置完全相同。

POSIX 还规定,返回的指针(不仅仅是指向的字符串的内容)可能被后续对 setlocale 的调用无效化。

[编辑] 示例

#include <clocale>
#include <cstdio>
#include <ctime>
#include <cwchar>
#include <iterator>
#include <string>
 
int main()
{
    // Make a "deep copy" of current locale name.
    std::string prev_loc = std::setlocale(LC_ALL, nullptr);
 
    // The C locale will be UTF-8 enabled English,
    // decimal dot will be German,
    // date and time formatting will be Japanese.
    if (const char* loc = std::setlocale(LC_ALL, "en_US.UTF-8"))
        std::wprintf(L"New LC_ALL locale: %s\n", loc);
    if (const char* loc = std::setlocale(LC_NUMERIC, "de_DE.UTF-8"))
        std::wprintf(L"New LC_NUMERIC locale: %s\n", loc);
    if (const char* loc = std::setlocale(LC_TIME, "ja_JP.UTF-8"))
        std::wprintf(L"New LC_TIME locale: %s\n", loc);
 
    wchar_t buf[100];
    std::time_t t = std::time(nullptr);
    std::wcsftime(buf, std::size(buf), L"%A %c", std::localtime(&t));
    std::wprintf(L"Number: %.2f\nDate: %Ls\n", 3.14, buf);
 
    // Restore the previous locale.
    if (const char* loc = std::setlocale(LC_ALL, prev_loc.c_str()))
        std::wprintf(L"Restorred LC_ALL locale: %s\n", loc);
}

可能的输出

New LC_ALL locale: en_US.UTF-8
New LC_NUMERIC locale: de_DE.UTF-8
New LC_TIME locale: ja_JP.UTF-8
Number: 3,14
Date: 日曜日 2022年11月06日 20時40分59秒
Restorred LC_ALL locale: C

[编辑] 参见

区域设置类别,用于 std::setlocale
(宏常量) [编辑]
封装文化差异的多态面集
(类) [编辑]
C 文档,用于 setlocale

[编辑] 外部链接

1.  Windows 区域设置名称列表.
2.  Linux 区域设置名称列表.