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

在C/C++中的線程函數

PHPz
發布: 2023-08-30 10:49:07
轉載
1072 人瀏覽過

在C/C++中的線程函數

在本教程中,我們將討論一個程式來理解 C/C 中的執行緒函數。

執行緒函數允許使用者同時實作並發函數,這些函數可以相互依賴用於執行或獨立。

範例

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
void* func(void* arg){
   //detaching the current thread
   pthread_detach(pthread_self());
   printf("Inside the thread\n");
   pthread_exit(NULL);
}
void fun(){
   pthread_t ptid;
   //creating a new thread
   pthread_create(&ptid, NULL, &func, NULL);
   printf("This line may be printed before thread terminates\n");
   if(pthread_equal(ptid, pthread_self())
      printf("Threads are equal\n");
   else
      printf("Threads are not equal\n");
   //waiting for the created thread to terminate
   pthread_join(ptid, NULL);
   printf("This line will be printed" " after thread ends\n");
   pthread_exit(NULL);
}
int main(){
   fun();
   return 0;
}
登入後複製

輸出

This line may be printed before thread terminates
Threads are not equal
Inside the thread
This line will be printed after thread ends
登入後複製

以上是在C/C++中的線程函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!