這裡我們來看看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中文網其他相關文章!