GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::thread::get_id(3) C++ Standard Libary std::thread::get_id(3)

std::thread::get_id - std::thread::get_id


std::thread::id get_id() const noexcept; (since C++11)


Returns a value of std::thread::id identifying the thread associated with *this.


(none)


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.

// Run this code


#include <iostream>
#include <thread>
#include <chrono>


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


t1's id: 0x35a7210f
t2's id: 0x35a311c4


id represents the id of a thread
(public member class)
checks whether the thread is joinable, i.e. potentially running in parallel
joinable context
(public member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.