_configthreadlocale

配置每个线程区域设置选项。

int _configthreadlocale(
   int type
);

参数

  • type
    要设置的选项。 下表中列出的某个选项。

返回值

上述每个线程区域设置状态 (_DISABLE_PER_THREAD_LOCALE 或 _ENABLE_PER_THREAD_LOCALE),或者 -1 在失败。

备注

_configurethreadlocale 函数用于控件使用线程特定区域设置。 使用以下选项之一指定或确定每个线程区域设置状态:

  • _ENABLE_PER_THREAD_LOCALE
    使当前线程使用线程特定区域设置。 中的后续调用 setlocale 线程只影响线程自己的区域设置。

  • _DISABLE_PER_THREAD_LOCALE
    使当前线程使用全局区域设置。 使用全局区域设置,对的后续调用此线程影响的 setlocale 其他线程。

  • 0
    检索当前设置此特定线程的。

这些功能会影响 setlocale、_tsetlocale、_wsetlocale、_beginthread和 _beginthreadex行为。 如果另一个方法用于创建线程,区域设置对这些线程的效果。

在每个线程区域设置禁用时,任何后续的后续调用 setlocale 或 _wsetlocale 更改所有线程区域设置。 在每个线程区域设置启用时,setlocale 或 _wsetlocale 仅影响当前线程区域设置。

如果使用 _configurethreadlocale 使每个线程区域设置,我们建议您调用 setlocale 或 _wsetlocale 不久之后设置该线程的首选区域设置。

如果 type 不是在表中列出的某个值,此函数调用的参数无效处理程序,如 参数验证所述。 如果执行允许继续,此功能设置 errno 到 EINVAL 并返回 -1。

要求

实例

必需的标头

_configthreadlocale

<locale.h>

示例

// crt_configthreadlocale.cpp
// 
// This program demonstrates the use of _configthreadlocale when
// using is two independent threads.
//

#include <locale.h>
#include <process.h>
#include <windows.h>
#include <stdio.h>
#include <time.h>

#define BUFF_SIZE 100

// Retrieve the date and time in the current
// locale's format.
int get_time(unsigned char* str)
{
    __time64_t  ltime;
    struct tm   thetime;

    // Retieve the time
    _time64(&ltime);
    _gmtime64_s(&thetime, &ltime);

    // Format the current time structure into a string
    // using %#x is the long date representation,
    // appropriate to the current locale
    if (!strftime((char *)str, BUFF_SIZE, "%#x", 
                  (const struct tm*)&thetime))
    {
        printf("strftime failed!\n");
        return -1;
    }
    return 0;
}

// This thread sets its locale to German
// and prints the time.
unsigned __stdcall SecondThreadFunc( void* pArguments )
{
    unsigned char str[BUFF_SIZE];

    // Set the thread code page
    _setmbcp(_MB_CP_ANSI)

    // Set the thread locale
    printf("The thread locale is now set to %s.\n",
           setlocale(LC_ALL, "German"));

    // Retrieve the time string from the helper function
    if (get_time(str) == 0)
    {
        printf("The time in German locale is: '%s'\n", str);
    }

    _endthreadex( 0 );
    return 0;
} 

// The main thread spawns a second thread (above) and then
// sets the locale to English and prints the time.
int main()
{ 
    HANDLE          hThread;
    unsigned        threadID;
    unsigned char   str[BUFF_SIZE];

    // Configure per-thread locale to cause all subsequently created 
    // threads to have their own locale.
    _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);

    // Retrieve the time string from the helper function
    printf("The thread locale is now set to %s.\n",
           setlocale(LC_ALL, "English"));

    // Create the second thread.
    hThread = (HANDLE)_beginthreadex( NULL, 0, &SecondThreadFunc,
                                      NULL, 0, &threadID );

    if (get_time(str) == 0)
    {
        // Retrieve the time string from the helper function
        printf("The time in English locale is: '%s'\n\n", str);
    }

    // Wait for the created thread to finish.
    WaitForSingleObject( hThread, INFINITE );

    // Destroy the thread object.
    CloseHandle( hThread );
}
         

.NET Framework 等效项

不适用。但是,请参见 使用 CurrentCulture 属性

请参见

参考

setlocale, _wsetlocale

_beginthread, _beginthreadex

区域设置

多线程和区域设置