Condividi tramite


AfxGetThread

Chiamare la funzione per ottenere un puntatore all'oggetto di CWinThread che rappresenta il thread attualmente in esecuzione.

CWinThread* AfxGetThread( );

Valore restituito

Puntatore al thread attualmente in esecuzione; in caso contrario NULL.

Note

Deve essere chiamato dal thread desiderato.

[!NOTA]

Se si effettua il porting un progetto MFC che chiama AfxGetThread da Visual C++ versione 4,2, 5,0, o 6,0, AfxGetThread chiamano AfxGetApp se nessun thread è stato trovato.In visual C+ .NET e versioni successive, restituisce NULL di AfxGetThread se nessun thread è stato trovato.Se si desidera che il thread dell'applicazione, è necessario chiamare AfxGetApp.

Esempio

//Print the current thread ID in the Debug Window
TRACE(_T("Current Thread ID = 0x%X\n"), AfxGetThread()->m_nThreadID);

Requisiti

Header: afxwin.h

Vedere anche

Riferimenti

AfxBeginThread

Concetti

Macro MFC e Globals