এই টিউটোরিয়ালে, আমরা C++ এ থ্রেড get_id() ফাংশন বোঝার জন্য একটি প্রোগ্রাম নিয়ে আলোচনা করব।
থ্রেড get_id() ফাংশন প্রক্রিয়াটির বর্তমান অবস্থা যাচাই করে এবং তারপরে কার্যকর করা বর্তমান থ্রেডের জন্য আইডি প্রদান করে। এই ফাংশন কোনো প্যারামিটার নেয় না।
উদাহরণ
#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;
} আউটপুট
ID associated with thread1= 135456142132844 ID associated with thread2= 135121414221716