线程标识类型是 std::thread::id , 可以通过两种方式进行检索。
- 第一种, 可以通过调用 std::thread 对象的成员函数
get_id()
来直接获取。 如果 std::thread 对象没有与任何执行线程相关联,get_id()
将返回std::thread::type
默认构造值, 这个值表示“没有线程”。 - 第二种, 当前线程中调用
std::this_thread::get_id()
(这个函数定义在 <thread> 头文件中)也可以获得线程标识。
线程标识类型是 std::thread::id , 可以通过两种方式进行检索。
get_id()
来直接获取。 如果 std::thread 对象没有与任何执行线程相关联, get_id()
将返回 std::thread::type
默认构造值, 这个值表示“没有线程”。std::this_thread::get_id()
(这个函数定义在 <thread> 头文件中)也可以获得线程标识。