std::thread:: get_id
From cppreference.net
C++
Concurrency support library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
std::
thread
::
id
get_id
(
)
const
noexcept
;
|
(depuis C++11) | |
Retourne une valeur de std::thread::id identifiant le thread associé à * this .
Table des matières |
Paramètres
(aucun)
Valeur de retour
Une valeur de type std::thread::id identifiant le thread associé à * this . S'il n'y a aucun thread associé, un std::thread::id construit par défaut est retourné.
Exemple
Exécuter ce code
#include <chrono> #include <iostream> #include <thread> void foo() { std::this_thread::sleep_for(std::chrono::seconds(1)); } int main() { std::thread t1(foo); std::thread::id t1_id = t1.get_id(); std::thread t2(foo); std::thread::id t2_id = t2.get_id(); std::cout << "t1's id: " << t1_id << '\n'; std::cout << "t2's id: " << t2_id << '\n'; t1.join(); t2.join(); std::cout << "t1's id after join: " << t1.get_id() << '\n'; std::cout << "t2's id after join: " << t2.get_id() << '\n'; }
Sortie possible :
t1's id: 140146221688576 t2's id: 140146213295872 t1's id after join: thread::id of a non-executing thread t2's id after join: thread::id of a non-executing thread
Voir aussi
|
représente l'
id
d'un thread
(classe membre publique) |
|
|
vérifie si le thread est joignable, c'est-à-dire potentiellement en cours d'exécution dans un contexte parallèle
(fonction membre publique) |