91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++多進程和多線程編程的方法是什么

發布時間:2022-10-14 14:28:17 來源:億速云 閱讀:150 作者:iii 欄目:編程語言

這篇文章主要介紹了C++多進程和多線程編程的方法是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇C++多進程和多線程編程的方法是什么文章都會有所收獲,下面我們一起來看看吧。

1、多進程編程

#include <stdlib.h> 
#include <sys/types.h> 
#include <unistd.h> 
 
int main() 
{ 
  pid_t child_pid; 
 
  /* 創建一個子進程 */ 
  child_pid = fork(); 
  if(child_pid == 0) 
  { 
    printf("child pid\n"); 
    exit(0); 
  } 
  else 
  { 
    printf("father pid\n"); 
    sleep(60); 
  } 
   
  return 0; 
}

 2、多線程編程

#include <stdio.h> 
#include <pthread.h> 
 
struct char_print_params 
{ 
  char character; 
  int count; 
}; 
 
void *char_print(void *parameters) 
{ 
  struct char_print_params *p = (struct char_print_params *)parameters; 
  int i; 
 
  for(i = 0; i < p->count; i++) 
  { 
    fputc(p->character,stderr); 
  } 
 
  return null; 
} 
 
int main() 
{ 
  pthread_t thread1_id; 
  pthread_t thread2_id; 
  struct char_print_params thread1_args; 
  struct char_print_params thread2_args; 
 
  thread1_args.character = 'x'; 
  thread1_args.count = 3000; 
  pthread_create(&thread1_id, null, &char_print, &thread1_args); 
 
  thread2_args.character = 'o'; 
  thread2_args.count = 2000; 
  pthread_create(&thread2_id, null, &char_print, &thread2_args); 
 
  pthread_join(thread1_id, null); 
  pthread_join(thread2_id, null); 
 
  return 0; 
}

 3、線程同步與互斥

1)、互斥

pthread_mutex_t mutex; 
pthread_mutex_init(&mutex, null); 
 
/*也可以用下面的方式初始化*/ 
pthread_mutex_t mutex = pthread_mutex_initializer; 
 
pthread_mutex_lock(&mutex); 
/* 互斥  */ 
 
thread_flag = value; 
 
pthread_mutex_unlock(&mutex);

2)、條件變量

int thread_flag = 0; 
pthread_mutex_t mutex; 
pthread_cond_t thread_flag_cv;\ 
 
void init_flag() 
{ 
  pthread_mutex_init(&mutex, null); 
  pthread_cond_init(&thread_flag_cv, null); 
  thread_flag = 0; 
} 
 
void *thread_function(void *thread_flag) 
{ 
  while(1) 
  { 
    pthread_mutex_lock(&mutex); 
    while(thread_flag != 0 ) 
    { 
      pthread_cond_wait(&thread_flag_cv, &mutex); 
    } 
    pthread_mutex_unlock(&mutex); 
 
    do_work(); 
  } 
 
  return null; 
} 
 
void set_thread_flag(int flag_value) 
{ 
  pthread_mutex_lock(&mutex); 
  thread_flag = flag_value; 
 
  pthread_cond_signal(&thread_flag_cv); 
  pthread_mutex_unlock(&mutex); 
}

關于“C++多進程和多線程編程的方法是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“C++多進程和多線程編程的方法是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

商丘市| 承德市| 凌云县| 都兰县| 丰台区| 阜新| 临沭县| 宁国市| 巴林左旗| 内江市| 津市市| 山阴县| 钦州市| 凤庆县| 塔城市| 巴彦淖尔市| 伊宁市| 边坝县| 盖州市| 锡林浩特市| 吉水县| 安徽省| 阿尔山市| 怀仁县| 阜新市| 巴里| 东兴市| 清远市| 利津县| 潞城市| 吐鲁番市| 双峰县| 卓资县| 文安县| 祥云县| 云安县| 读书| 高要市| 湟中县| 方正县| 炎陵县|