首頁 > 後端開發 > C++ > 主體

在C語言中,pthread_self()的意思是取得目前執行緒的ID

WBOY
發布: 2023-09-18 15:21:04
轉載
1284 人瀏覽過

在C語言中,pthread_self()的意思是取得目前執行緒的ID

這裡我們來看看C語言中pthread_self()的作用是什麼。 pthread_self()函數用於取得目前執行緒的ID。該函數可以唯一標識現有的執行緒。但如果有多個線程,並且有一個線程完成,那麼該 id 就可以重複使用。因此,對於所有正在運行的線程,id 都是唯一的。

範例

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void* func(void* p) {
   printf("From the function, the thread id = %d</p><p>", 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</p><p>", thread);
   pthread_join(thread, NULL); //join with main thread
}
登入後複製

輸出

From the main function, the thread id = 1
From the function, the thread id = 1
登入後複製

以上是在C語言中,pthread_self()的意思是取得目前執行緒的ID的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板