Thread :: get_id()是C++ std :: thread中的内置函数。这是一个观察者函数,表示它观察一个状态,然后返回相应的输出。该函数返回std :: thread :: id的值,从而标识与* this关联的线程。
句法:
thread_name.get_id();
参数:该函数不接受任何参数。
返回值:该方法返回std :: thread :: id类型的值,该值标识与* this关联的线程,即,返回用于调用get_id函数的线程。如果未标识此类线程,则返回默认构造的std :: thread :: id 。
以下示例演示了std :: thread :: get_id()方法的用法:
注意:在在线IDE上,此程序将显示错误。要对此进行编译,请在命令“ g ++ –std = C++ 14 -pthread file.cpp ”的帮助下对g ++编译器使用标志“ -pthread”。
// C++ program to demonstrate the use of
// std::thread::get_id
#include
#include
#include
using namespace std;
// util function for thread creation
void sleepThread()
{
this_thread::sleep_for(chrono::seconds(1));
}
int main()
{
// creating thread1 and thread2
thread thread1(sleepThread);
thread thread2(sleepThread);
thread::id t1_id = thread1.get_id();
thread::id t2_id = thread2.get_id();
cout << "ID associted with thread1= "
<< t1_id << endl;
cout << "ID associted with thread2= "
<< t2_id << endl;
thread1.join();
thread2.join();
return 0;
}
可能的输出:
ID associted with thread1= 139858743162624
ID associted with thread2= 139858734769920
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。