从std::thread::id取得int值id

Posted yc-only-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从std::thread::id取得int值id相关的知识,希望对你有一定的参考价值。

在写多线程时,因为某些需求,需要获得 std::this_thread::get_id() 的 std::thread::id 类型值转换为 unsigned int 类型值,并且与cout<<std::this_thread::get_id() 输出值一致

https://stackoverflow.com/questions/7432100/how-to-get-integer-thread-id-in-c11#

在 stackoverflow 参考了很多方法后尝试都不尽人意

最后跟入 std::thread::id 结构,如下

class id{
...
//其余皆为非虚函数
private:
      _Thrd_t _Thr;
}  

其中 _Thrd_t 结构定义如下

typedef struct
{    /* thread identifier for Win32 */
    void *_Hnd;    /* Win32 HANDLE */
    unsigned int _Id;
} _Thrd_imp_t;
typedef _Thrd_imp_t _Thrd_t;

其中,_Id 即为我们想取到的 unsigned int 值

于是灵光一闪,只有一个参数且没有虚函数表,利用强大的C++指针岂不是能够很简单很快速的获取到 private 值?

在线程中测试如下代码

std::thread::id tid = std::this_thread::get_id();
_Thrd_t t = *(_Thrd_t*)(char*)&tid ;
unsiged int nId = t._Id

测试通过

  

以上是关于从std::thread::id取得int值id的主要内容,如果未能解决你的问题,请参考以下文章

std::thread

如何获取当前线程的 std::thread?

C++并发与多线程 3_线程传参数详解,detach 注意事项

查看线程id和强制取引用

如何判断我们是不是在主线程中运行?

C ++中“主”线程的ID