Condividi tramite


_configthreadlocale

Configurare le opzioni per thread locali.

int _configthreadlocale(
   int type
);

Parametri

  • type
    Opzione da impostare.Una delle opzioni elencate nella seguente tabella.

Valore restituito

Lo stato di thread locale precedente (_DISABLE_PER_THREAD_LOCALE o _ENABLE_PER_THREAD_LOCALE), o -1 in caso di errore.

Note

La funzione _configurethreadlocale è utilizzata per controllare l'utilizzo di thread specifici locali.Utilizzare una di queste opzioni per specificare o per determinare lo stato di thread delle impostazioni locali:

  • _ENABLE_PER_THREAD_LOCALE
    Fare in modo che il thread corrente utilizzi un thread specifico locale.Le chiamate successive a setlocale in questo thread influiscono solamente sulle impostazioni locali del thread.

  • _DISABLE_PER_THREAD_LOCALE
    Fare in modo che il thread corrente utilizzi le impostazioni locali globali.Le chiamate successive a setlocale in questo thread influiscono su altri thread che utilizzano le impostazioni locali globali.

  • 0
    Recupera l'impostazione corrente per il thread specifico.

Queste funzioni influiscono sul comportamento di setlocale, _tsetlocale, _wsetlocale, _beginthread, e _beginthreadex.Se un altro metodo viene utilizzato per creare i thread, le impostazioni locali non hanno effetto sui thread.

Quando le impostazioni locali dei thread sono disabilitati, qualsiasi chiamata successiva a setlocale o a _wsetlocale modifica delle impostazioni locali di tutti thread.Quando le impostazioni locali di thread sono abilitate, solo setlocale o _wsetlocale influiscono sulle impostazioni locali del thread corrente.

Se si utilizza _configurethreadlocale per attivare le impostazioni locali di thread, è consigliabile chiamare setlocale o _wsetlocale per impostare contemporaneamente in seguito le impostazioni locali si preferisce in tale thread.

Se type non è uno dei valori riportati nella tabella, questa funzione invoca il gestore di parametri non validi, come descritto in Convalida dei parametri.Se l'esecuzione può continuare, la funzione imposta errno a EINVAL e restituisce -1.

Requisiti

Routine

Intestazione obbligatoria

_configthreadlocale

<locale.h>

Esempio

// 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 );
}
  
  
  
  

Equivalente .NET Framework

Non applicabile. Tuttavia, vedere Utilizzo della proprietà CurrentCulture.

Vedere anche

Riferimenti

setlocale, _wsetlocale

_beginthread, _beginthreadex

Impostazioni locali

Multithreading e impostazioni locali