Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Thread get_id() function in C++
In this tutorial, we will be discussing a program to understand thread get_id() function in C++.
Thread get_id() function verifies the current state of the process and then returns the id for the current thread in execution. This function doesn’t take any parameters.
Example
#include <chrono>
#include <iostream>
#include <thread>
using namespace std;
//creating thread
void sleepThread(){
this_thread::sleep_for(chrono::seconds(1));
}
int main(){
thread thread1(sleepThread);
thread thread2(sleepThread);
thread::id t1_id = thread1.get_id();
thread::id t2_id = thread2.get_id();
cout << "ID associated with thread1= " << t1_id << endl;
cout << "ID associated with thread2= " << t2_id << endl;
thread1.join();
thread2.join();
return 0;
}
Output
ID associated with thread1= 135456142132844 ID associated with thread2= 135121414221716
Advertisements