_configthreadlocale
Konfiguruje opcje ustawień regionalnych na wątek.
int _configthreadlocale(
int type
);
Parametry
- type
Możliwość ustawienia.Jedna z opcji wymienionych w poniższej tabeli.
Wartość zwracana
Poprzedni stan ustawień regionalnych wątku (_DISABLE_PER_THREAD_LOCALE lub _ENABLE_PER_THREAD_LOCALE), lub -1 w przypadku awarii.
Uwagi
_configurethreadlocale funkcja jest używana do kontroli stosowania ustawień regionalnych właściwych dla wątku.Do określania lub ustalania stanu ustawień regionalnych na wątek, należy użyć jednej z poniższych opcji:
_ENABLE_PER_THREAD_LOCALE
Użyj do bieżącego wątku ustawień regionalnych specyficznych dla wątku.Kolejne wywołania setlocale w tym wątku wpływają tylko na ustawienia regionalne dla wątku._DISABLE_PER_THREAD_LOCALE
Użyj do bieżącego wątku globalnych ustawień regionalnych.Kolejne wywołania setlocale w tym wątku wpływają na inne wątki przy użyciu globalnych ustawień regionalnych.0
Pobiera bieżące ustawienie dla tego określonego wątku.
Te funkcje mają wpływ na zachowanie setlocale, _tsetlocale, _wsetlocale, _beginthread, i _beginthreadex.Jeśli inna metoda jest używana do tworzenia wątków, ustawienia regionalne nie mają wpływu na te wątki.
Kiedy wstępny wątek ustawienia regionalnego jest wyłączone, wszelkie następne wywołania setlocale lub _wsetlocale zmieniają ustawienia regionalne wszystkich wątków.Po włączeniu ustawień regionalnych wstępnego wątku setlocale lub _wsetlocale wpływa tylko na ustawienia regionalne bieżącego wątku.
Jeśli używasz _configurethreadlocale, aby włączyć ustawienia regionalne na wątek, firma Microsoft zaleca wywołanie setlocale lub _wsetlocale, aby zaraz potem ustawić preferowane ustawienia regionalne w tym wątku.
Jeśli type nie jest jedną z wartości wymienionych w tabeli, to funkcja wywołuje procedurę obsługi nieprawidłowego parametru, zgodnie z opisem w Sprawdzanie poprawności parametru.Jeśli wykonanie może być kontynuowane, funkcja ta ustawia errno jako EINVAL i zwraca -1.
Wymagania
Procedura |
Wymagany nagłówek |
---|---|
_configthreadlocale |
<locale.h> |
Przykład
// 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(<ime);
_gmtime64_s(&thetime, <ime);
// 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 );
}
Odpowiednik w programie .NET Framework
Nie dotyczy. Jednak patrz Korzystanie z właściwości CurrentCulture.