std::thread::get_id (3) - Linux Manuals
std::thread::get_id: std::thread::get_id
NAME
std::thread::get_id - std::thread::get_id
Synopsis
std::thread::id get_id() const noexcept; (since C++11)
Returns a value of std::thread::id identifying the thread associated with *this.
Parameters
(none)
Return value
A value of type std::thread::id identifying the thread associated with *this. If there is no thread associated, default constructed std::thread::id is returned.
Example
// Run this code
Possible output:
See also
id (public member class)
joinable (public member function)