
这里我们看看C语言中pthread_self()的作用是什么。pthread_self()函数用于获取当前线程的ID。该函数可以唯一标识现有的线程。但如果有多个线程,并且有一个线程完成,那么该 id 就可以重用。因此,对于所有正在运行的线程,id 都是唯一的。
示例
#include #include #include void* func(void* p) { printf("From the function, the thread id = %d", pthread_self()); //get current thread id pthread_exit(NULL); return NULL;}main() { pthread_t thread; // declare thread pthread_create(&thread, NULL, func, NULL); printf("From the main function, the thread id = %d
", thread); pthread_join(thread, NULL); //join with main thread}
输出
From the main function, the thread id = 1From the function, the thread id = 1
以上就是在C语言中,pthread_self()的意思是获取当前线程的ID的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1445440.html
微信扫一扫
支付宝扫一扫