std::this_thread::get_id
Da cppreference.com.
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <thread> | ||
std::thread::id get_id(); | (dal C++11) | |
Restituisce l'id' del thread corrente.
Original:
Returns the id of the current thread.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica]Parametri
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Valore di ritorno
' Id del thread corrente
Original:
id of the current thread
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Esempio
#include <iostream>#include <thread>#include <chrono>#include <mutex> std::mutex g_display_mutex; void foo(){std::thread::id this_id = std::this_thread::get_id(); g_display_mutex.lock();std::cout<<"thread "<< this_id <<" sleeping...\n"; g_display_mutex.unlock(); std::this_thread::sleep_for(std::chrono::seconds(1));} int main(){std::thread t1(foo);std::thread t2(foo); t1.join(); t2.join();}
Possible output:
thread 0x2384b312 sleeping... thread 0x228a10fc sleeping...
[modifica]Vedi anche
restituisce l'id' del filo Original: returns the id of the thread The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |